* lib-src/emacsclient.c (main): Use right length modifier when
printing uintmax_t.
* src/alloc.c (check_pure_size): Use right length modifier when
printing ptrdiff_t.
if (timeout > 0)
{
/* Don't retry if we were given a --timeout flag. */
- fprintf (stderr, "\nServer not responding; timed out after %lu seconds",
+ fprintf (stderr, "\nServer not responding; timed out after %ju seconds",
timeout);
retry = false;
}
check_pure_size (void)
{
if (pure_bytes_used_before_overflow)
- message (("emacs:0:Pure Lisp storage overflow (approx. %"pI"d"
+ message (("emacs:0:Pure Lisp storage overflow (approx. %"pD"d"
" bytes needed)"),
pure_bytes_used + pure_bytes_used_before_overflow);
}