mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-15 09:47:20 +00:00
(list_processes_1): Cast XFASTINT for passing to sprintf.
This commit is contained in:
parent
f49deb4fff
commit
3162bafa9e
@ -923,7 +923,7 @@ Proc Status Buffer Tty Command\n\
|
||||
tem = Fcar (Fcdr (p->status));
|
||||
if (XFASTINT (tem))
|
||||
{
|
||||
sprintf (tembuf, " %d", XFASTINT (tem));
|
||||
sprintf (tembuf, " %d", (int) XFASTINT (tem));
|
||||
write_string (tembuf, -1);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user