Fix format specifier warning

* src/utils.c (aprintf): Use %d for int argument
This commit is contained in:
Tim Ruehsen 2015-05-03 21:18:47 +02:00
parent 0e6d6ca963
commit 6b8dfe1d6e
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ aprintf (const char *fmt, ...)
{ /* maybe we have some wrong
format string? */
logprintf (LOG_ALWAYS,
_("%s: aprintf: text buffer is too big (%ld bytes), "
_("%s: aprintf: text buffer is too big (%d bytes), "
"aborting.\n"),
exec_name, size); /* printout a log message */
abort (); /* and abort... */