From: Eric Biggers Date: Thu, 14 Nov 2013 00:09:27 +0000 (-0600) Subject: imagex.c: Fix string literal used in oom path only X-Git-Tag: v1.5.2~5 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=efe0c3f69a5d3c7c226a66c004b5bf6ef8a02d11 imagex.c: Fix string literal used in oom path only --- 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; }