(struct Lisp_Process): Declare bit field as unsigned.

This commit is contained in:
Andreas Schwab 2008-03-08 15:55:51 +00:00
parent 8b7d6d40e5
commit f2549aa023
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2008-03-08 Andreas Schwab <schwab@suse.de>
* process.h (struct Lisp_Process): Declare bit field as unsigned.
2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
* fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum

View file

@ -123,7 +123,7 @@ struct Lisp_Process
This is to avoid consing in a signal handler. The `raw_status_new'
flag indicates that `raw_status' contains a new status that still
needs to be synced to `status'. */
int raw_status_new : 1;
unsigned int raw_status_new : 1;
int raw_status;
};