From: Derick Rethans Date: Tue, 14 Nov 2006 14:41:09 +0000 (+0000) Subject: - No idea if we actually support 16 bit systems, but this just looked wrong X-Git-Tag: RELEASE_1_0_0RC1~1015 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a659a6a052a769217fb5db3a499060de9df74ad;p=php - 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 61df9ff6bc..aaf9daa0ef 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -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