[LinuxBIOS] r465 - LinuxBIOSv3/util/x86emu/include/x86emu

svn at openbios.org svn at openbios.org
Fri Aug 10 15:48:59 CEST 2007


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 <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>



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;
 





More information about the coreboot mailing list