summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-02-08 22:18:21 +0000
committerZeev Suraski <zeev@php.net>2000-02-08 22:18:21 +0000
commitebddd16c75c076cfdd1843a795604d2896ef6442 (patch)
treef04b601db69d81761d578ab8f3dfc46d4017c481
parent489b705d4b15ac0774cd30bf011c32abcfc1af23 (diff)
downloadphp-git-ebddd16c75c076cfdd1843a795604d2896ef6442.tar.gz
Fix declaration
-rw-r--r--Zend/zend_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index ef2f801ac7..a2888ab7e9 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -1230,7 +1230,7 @@ ZEND_API int zend_binary_strcmp(char *s1, uint len1, char *s2, uint len2)
}
}
-ZEND_API int zend_binary_strncmp(char *s1, uint len1, char *s2, uint len2, int length)
+ZEND_API int zend_binary_strncmp(char *s1, uint len1, char *s2, uint len2, uint length)
{
int retval;