1
0
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:
Richard M. Stallman 1995-05-05 02:16:54 +00:00
parent f49deb4fff
commit 3162bafa9e

View File

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