diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32proc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/w32proc.c b/src/w32proc.c index 88afa590bbe..0c24f0b9c17 100644 --- a/src/w32proc.c +++ b/src/w32proc.c | |||
| @@ -366,10 +366,8 @@ create_child (char *exe, char *cmdline, char *env, int is_gui_app, | |||
| 366 | if (cp->pid < 0) | 366 | if (cp->pid < 0) |
| 367 | cp->pid = -cp->pid; | 367 | cp->pid = -cp->pid; |
| 368 | 368 | ||
| 369 | #if defined(NO_UNION_TYPE) && !defined (USE_LSB_TAG) | ||
| 370 | /* pid must fit in a Lisp_Int */ | 369 | /* pid must fit in a Lisp_Int */ |
| 371 | cp->pid = (cp->pid & VALMASK); | 370 | cp->pid = make_number (cp->pid); |
| 372 | #endif | ||
| 373 | 371 | ||
| 374 | *pPid = cp->pid; | 372 | *pPid = cp->pid; |
| 375 | 373 | ||