diff options
| author | Richard M. Stallman | 1995-05-05 02:16:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-05-05 02:16:54 +0000 |
| commit | 3162bafa9e6e2fb9cefc5ea9fc6a2b8928f02e97 (patch) | |
| tree | cf600df4e86048e4f6bc2b2cbab157fa62ddba87 /src/process.c | |
| parent | f49deb4fff44d78b6db92491aae3af46e68a77e6 (diff) | |
| download | emacs-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.c | 2 |
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 | } |