]> granicus.if.org Git - php/commitdiff
- MFH: No idea if we actually support 16 bit systems, but this just looked wrong
authorDerick Rethans <derick@php.net>
Tue, 14 Nov 2006 14:43:16 +0000 (14:43 +0000)
committerDerick Rethans <derick@php.net>
Tue, 14 Nov 2006 14:43:16 +0000 (14:43 +0000)
ext/standard/basic_functions.h

index 2dfbfd9fded4d8eb577c72ca6da7861dbdf46776..13ed1c922b0a1b6aedbaafde48eafed22b648826 100644 (file)
@@ -121,7 +121,7 @@ typedef signed int php_int32;
 #elif SIZEOF_LONG == 4
 /* 16-bit systems? */
 typedef unsigned long php_uint32;
-typedef signed int php_int32;
+typedef signed long php_int32;
 #else
 #error Need type which holds 32 bits
 #endif