diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-10-04 16:16:33 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-10-04 16:16:33 +0000 |
commit | 97032369831604b86cb06b489c840a1dd3854173 (patch) | |
tree | 90c62d09928ab6c53940c036b7670ac400a20975 /src/vmsproc.c | |
parent | b6bd6ce6ea2fbaec4ceeac296c3bb9217c018e4f (diff) | |
download | emacs-97032369831604b86cb06b489c840a1dd3854173.tar.gz |
(create_process): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src/vmsproc.c')
-rw-r--r-- | src/vmsproc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vmsproc.c b/src/vmsproc.c index 5e347bbaa10..48834d328f6 100644 --- a/src/vmsproc.c +++ b/src/vmsproc.c @@ -726,8 +726,8 @@ create_process (process, new_argv) /* Record this as an active process, with its channels. As a result, child_setup will close Emacs's side of the pipes. */ chan_process[inchannel] = process; - XFASTINT (XPROCESS (process)->infd) = inchannel; - XFASTINT (XPROCESS (process)->outfd) = outchannel; + XSETFASTINT (XPROCESS (process)->infd, inchannel); + XSETFASTINT (XPROCESS (process)->outfd, outchannel); XPROCESS (process)->status = Qrun /* Delay interrupts until we have a chance to store @@ -742,7 +742,7 @@ create_process (process, new_argv) */ write_to_vms_process (vs, NO_ECHO, strlen (NO_ECHO)); - XFASTINT (XPROCESS (process)->pid) = pid; + XSETFASTINT (XPROCESS (process)->pid, pid); sys$setast (1); } |