Commit 5c51d4ea authored by David Lawrence Ramsey's avatar David Lawrence Ramsey Committed by Benno Schulenberg
Browse files

tweaks: avoid a compilation warning

No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -2017,7 +2017,7 @@ int main(int argc, char **argv)
if (MB_CUR_MAX > MAXCHARLEN)
fprintf(stderr, "Unexpected large character size: %i bytes"
" -- please report a bug\n", MB_CUR_MAX);
" -- please report a bug\n", (int)MB_CUR_MAX);
#if defined(DISABLE_NANORC) && defined(DISABLE_ROOTWRAPPING)
/* If we don't have rcfile support, --disable-wrapping-as-root is
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment