From 600fce5890e0080a7f2d5ba1ebd284abcf355816 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Fri, 24 Jan 2003 13:18:08 +0000 Subject: [PATCH] Resolving problem on OSF1 and probably other 64 bit platforms. Thanks for the feedback of Magnus (novell kiruna se). --- ext/standard/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/string.c b/ext/standard/string.c index e7692766c3..7c7681bf94 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -199,7 +199,7 @@ PHP_FUNCTION(bin2hex) static void php_spn_common_handler(INTERNAL_FUNCTION_PARAMETERS, int behavior) { char *s11, *s22; - long len1, len2, start, len; + int len1, len2, start, len; start = 0; len = 0; -- 2.50.1