Enlightenment CVS committal Author : nash Project : e17 Module : libs/ecore
Dir : e17/libs/ecore/src/lib/ecore Modified Files: Ecore.h Log Message: Vincent Torri pointed out that char bitfields are undefined in C89... and he is correct. =================================================================== RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore.h,v retrieving revision 1.55 retrieving revision 1.56 diff -u -3 -r1.55 -r1.56 --- Ecore.h 25 Oct 2007 05:26:03 -0000 1.55 +++ Ecore.h 25 Oct 2007 05:55:07 -0000 1.56 @@ -185,8 +185,8 @@ int exit_code; /**< The exit code of the process */ Ecore_Exe *exe; /**< The handle to the exited process, or NULL if not found */ int exit_signal; /** < The signal that caused the process to exit */ - unsigned char exited : 1; /** < set to 1 if the process exited of its own accord */ - unsigned char signalled : 1; /** < set to 1 id the process exited due to uncaught signal */ + unsigned int exited : 1; /** < set to 1 if the process exited of its own accord */ + unsigned int signalled : 1; /** < set to 1 id the process exited due to uncaught signal */ void *ext_data; /**< Extension data - not used */ siginfo_t data; /**< Signal info */ }; ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs