diff options
| author | Richard M. Stallman | 1993-06-12 16:58:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-12 16:58:31 +0000 |
| commit | 188d6c4e6327a15419f89819e41c8f87c5494677 (patch) | |
| tree | 2c74523e6e0accfcf36ef0b63815c44b3e791632 /src/process.c | |
| parent | f110a664783fa577f33e45d0f066e7203f6ea22b (diff) | |
| download | emacs-188d6c4e6327a15419f89819e41c8f87c5494677.tar.gz emacs-188d6c4e6327a15419f89819e41c8f87c5494677.zip | |
(start_process_unwind): Use XINT.
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 af3c079f541..fd15ea9bc3b 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1078,7 +1078,7 @@ start_process_unwind (proc) | |||
| 1078 | abort (); | 1078 | abort (); |
| 1079 | 1079 | ||
| 1080 | /* Was PROC started successfully? */ | 1080 | /* Was PROC started successfully? */ |
| 1081 | if (XPROCESS (proc)->pid <= 0) | 1081 | if (XINT (XPROCESS (proc)->pid) <= 0) |
| 1082 | remove_process (proc); | 1082 | remove_process (proc); |
| 1083 | 1083 | ||
| 1084 | return Qnil; | 1084 | return Qnil; |