diff src/process.c @ 11695:0f9b9c375416

(list_processes_1): Cast XFASTINT for passing to sprintf.
author Richard M. Stallman <rms@gnu.org>
date Fri, 05 May 1995 02:16:54 +0000
parents 3b2dacb1bfe9
children affed1766d34
line wrap: on
line diff
--- a/src/process.c	Fri May 05 01:30:32 1995 +0000
+++ b/src/process.c	Fri May 05 02:16:54 1995 +0000
@@ -923,7 +923,7 @@
 	  tem = Fcar (Fcdr (p->status));
 	  if (XFASTINT (tem))
 	    {
-	      sprintf (tembuf, " %d", XFASTINT (tem));
+	      sprintf (tembuf, " %d", (int) XFASTINT (tem));
 	      write_string (tembuf, -1);
 	    }
 	}