Author: stepan
Date: 2007-08-10 15:48:59 +0200 (Fri, 10 Aug 2007)
New Revision: 465

Modified:
   LinuxBIOSv3/util/x86emu/include/x86emu/types.h
Log:
trivial: explicitly make signed types signed as ommiting the "signed" keyword 
might not do what we want.

Signed-off-by: Stefan Reinauer <[EMAIL PROTECTED]>
Acked-by: Stefan Reinauer <[EMAIL PROTECTED]>



Modified: LinuxBIOSv3/util/x86emu/include/x86emu/types.h
===================================================================
--- LinuxBIOSv3/util/x86emu/include/x86emu/types.h      2007-07-23 23:18:41 UTC 
(rev 464)
+++ LinuxBIOSv3/util/x86emu/include/x86emu/types.h      2007-08-10 13:48:59 UTC 
(rev 465)
@@ -74,15 +74,15 @@
 typedef unsigned long long     u64;
 #endif
 
-typedef char                           s8;
-typedef short                          s16;
-typedef int                            s32;
+typedef signed char            s8;
+typedef signed short           s16;
+typedef signed int             s32;
 #ifdef __HAS_LONG_LONG__
-typedef long long                      s64;
+typedef signed long long       s64;
 #endif
 
-typedef unsigned int                   uint;
-typedef int                            sint;
+typedef unsigned int           uint;
+typedef signed int             sint;
 
 typedef u16 X86EMU_pioAddr;
 


-- 
linuxbios mailing list
[email protected]
http://www.linuxbios.org/mailman/listinfo/linuxbios

Reply via email to