diff src/process.h @ 80304:842d7b2745f7

(struct Lisp_Process): Declare bit field as unsigned.
author Andreas Schwab <schwab@suse.de>
date Sat, 08 Mar 2008 15:55:51 +0000
parents fc2bcd2a8aad
children
line wrap: on
line diff
--- a/src/process.h	Sat Mar 08 15:53:31 2008 +0000
+++ b/src/process.h	Sat Mar 08 15:55:51 2008 +0000
@@ -123,7 +123,7 @@
        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;
 };