]> code.delx.au - gnu-emacs/commitdiff
(struct Lisp_Process): Declare bit field as unsigned.
authorAndreas Schwab <schwab@suse.de>
Sat, 8 Mar 2008 15:55:51 +0000 (15:55 +0000)
committerAndreas Schwab <schwab@suse.de>
Sat, 8 Mar 2008 15:55:51 +0000 (15:55 +0000)
src/ChangeLog
src/process.h

index b2310ae76c252d9772640da1f9e498ec5b8ea491..b00ca9a32a8e24960e2d4e83ec6eda357ebab984 100644 (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
index 7a212245724732ad74ef960d108a39b00316508e..3be8686b830c244ff3c63346942d83102380280e 100644 (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;
 };