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.
This commit is contained in:
Eliseo Martínez 2014-04-22 20:57:10 +02:00 committed by Thiago de Arruda
parent 357f54f331
commit 30b062e7d8

View File

@ -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);
}
}