From: Derick Rethans Date: Tue, 14 Nov 2006 14:43:16 +0000 (+0000) Subject: - MFH: No idea if we actually support 16 bit systems, but this just looked wrong X-Git-Tag: php-4.4.5RC1~44 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=426b1765a242344e5e10301bd1f6191798251612;p=php - MFH: No idea if we actually support 16 bit systems, but this just looked wrong --- diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 2dfbfd9fde..13ed1c922b 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -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