From efe0c3f69a5d3c7c226a66c004b5bf6ef8a02d11 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Wed, 13 Nov 2013 18:09:27 -0600 Subject: [PATCH] imagex.c: Fix string literal used in oom path only --- programs/imagex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/imagex.c b/programs/imagex.c index 628205a0..54fc4cf2 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -1955,7 +1955,7 @@ imagex_capture_or_append(int argc, tchar **argv, int cmd) base_wims = calloc(base_wimfiles.num_strings, sizeof(base_wims[0])); if (base_wims == NULL) { - imagex_error("Out of memory!"); + imagex_error(T("Out of memory!")); ret = -1; goto out_free_wim; } -- 2.43.0