From 30b062e7d802aadc1b2ca478128e012a6c46da4a Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Tue, 22 Apr 2014 20:57:10 +0200 Subject: Use portable format specifiers: Case %lu - localized - EMSGN. Fix uses of plain "%lu" within EMSGN(): - Replace "%lu" with "%" PRIu64. - No argument cast needed. EMSGN() will take care of that. --- src/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/memory.c b/src/memory.c index 16e98dae2d..f2d24f70a1 100644 --- a/src/memory.c +++ b/src/memory.c @@ -197,7 +197,7 @@ void do_outofmem_msg(long_u size) * message fails, e.g. when setting v:errmsg. */ did_outofmem_msg = TRUE; - EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size); + EMSGN(_("E342: Out of memory! (allocating %" PRIu64 " bytes)"), size); } } -- cgit