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

index 61df9ff6bcf3a5f6df179086da4a7f827cadb140..aaf9daa0ef84b5e3b6c70b046430c7e2b477b4a2 100644 (file)
@@ -147,7 +147,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