* sysdep.c (sys_subshell): Don't assume pid_t fits in int.

This commit is contained in:
Paul Eggert 2012-11-24 23:50:55 -08:00
parent e2cb57f5f5
commit 5fbab05122
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
* sysdep.c (sys_subshell): Don't assume pid_t fits in int.
2012-11-24 Ken Brown <kbrown@cornell.edu>
* keyboard.c (HAVE_MOUSE):

View file

@ -453,7 +453,7 @@ sys_subshell (void)
int st;
char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
#endif
int pid;
pid_t pid;
struct save_signal saved_handlers[5];
Lisp_Object dir;
unsigned char *volatile str_volatile = 0;