From: Antony Dovgal Date: Thu, 26 Oct 2006 09:28:44 +0000 (+0000) Subject: fix wrong function prototype (see bug #39260) X-Git-Tag: RELEASE_1_0_0RC1~1201 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53d94a9821901a0e54cdb806fd8054d806aa56d9;p=php fix wrong function prototype (see bug #39260) --- diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index df0bf24c6a..fa26c1e2fe 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -549,10 +549,10 @@ ZEND_API void destroy_zend_class(zend_class_entry **pce); void zend_class_add_ref(zend_class_entry **ce); ZEND_API void zend_mangle_property_name(char **dest, int *dest_length, char *src1, int src1_length, char *src2, int src2_length, int internal); -ZEND_API int zend_unmangle_property_name(char *mangled_property, int len, char **prop_name, char **class_name); +ZEND_API int zend_unmangle_property_name(char *mangled_property, int len, char **class_name, char **prop_name); ZEND_API void zend_u_mangle_property_name(zstr *dest, int *dest_length, zend_uchar type, zstr src1, int src1_length, zstr src2, int src2_length, int internal); -ZEND_API int zend_u_unmangle_property_name(zend_uchar type, zstr mangled_property, int len, zstr *prop_name, zstr *class_name); +ZEND_API int zend_u_unmangle_property_name(zend_uchar type, zstr mangled_property, int len, zstr *class_name, zstr *prop_name); #define ZEND_FUNCTION_DTOR (void (*)(void *)) zend_function_dtor