changeset 55647:af4c24a912d0

* w32proc.c (create_child): Use make_number instead of masking pid.
author Jason Rumney <jasonr@gnu.org>
date Mon, 17 May 2004 22:27:53 +0000
parents 358a5c0b4571
children a9c3a4a0ef8f
files src/w32proc.c
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/w32proc.c	Mon May 17 21:43:22 2004 +0000
+++ b/src/w32proc.c	Mon May 17 22:27:53 2004 +0000
@@ -366,10 +366,8 @@
   if (cp->pid < 0)
     cp->pid = -cp->pid;
 
-#if defined(NO_UNION_TYPE) && !defined (USE_LSB_TAG)
   /* pid must fit in a Lisp_Int */
-  cp->pid = (cp->pid & VALMASK);
-#endif
+  cp->pid = make_number (cp->pid);
 
   *pPid = cp->pid;