aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorRichard M. Stallman1995-05-05 02:16:54 +0000
committerRichard M. Stallman1995-05-05 02:16:54 +0000
commit3162bafa9e6e2fb9cefc5ea9fc6a2b8928f02e97 (patch)
treecf600df4e86048e4f6bc2b2cbab157fa62ddba87 /src/process.c
parentf49deb4fff44d78b6db92491aae3af46e68a77e6 (diff)
downloademacs-3162bafa9e6e2fb9cefc5ea9fc6a2b8928f02e97.tar.gz
emacs-3162bafa9e6e2fb9cefc5ea9fc6a2b8928f02e97.zip
(list_processes_1): Cast XFASTINT for passing to sprintf.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 14fa3144339..f02e6a2071a 100644
--- a/src/process.c
+++ b/src/process.c
@@ -923,7 +923,7 @@ Proc Status Buffer Tty Command\n\
923 tem = Fcar (Fcdr (p->status)); 923 tem = Fcar (Fcdr (p->status));
924 if (XFASTINT (tem)) 924 if (XFASTINT (tem))
925 { 925 {
926 sprintf (tembuf, " %d", XFASTINT (tem)); 926 sprintf (tembuf, " %d", (int) XFASTINT (tem));
927 write_string (tembuf, -1); 927 write_string (tembuf, -1);
928 } 928 }
929 } 929 }