Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]>
---
wrapper.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/wrapper.c b/wrapper.c
index 9afc1a0..d2e3068 100644
--- a/wrapper.c
+++ b/wrapper.c
@@ -91,10 +91,10 @@ static void *do_xmallocz(size_t size, int gentle)
void *ret;
if (unsigned_add_overflows(size, 1)) {
if (gentle) {
- error("Data too large to fit into virtual memory
space.");
+ error(_("Data too large to fit into virtual memory
space."));
return NULL;
} else
- die("Data too large to fit into virtual memory space.");
+ die(_("Data too large to fit into virtual memory
space."));
}
ret = do_xmalloc(size + 1, gentle);
if (ret)
--
2.8.0.rc0.205.g7ec8cf1
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html