Fixed compiler warning.

This commit is contained in:
Derick Rethans
2011-07-05 12:37:26 +01:00
parent f19ec8a090
commit 48b0a5f985
+1 -1
View File
@@ -278,7 +278,7 @@ zval *TWIG_GET_ARRAY_ELEMENT_ZVAL(zval *class, zval *prop_name)
}
tmp_name = Z_STRVAL_P(prop_name);
if (zend_hash_find(HASH_OF(class), tmp_name, strlen(tmp_name)+1, &tmp_zval) == SUCCESS) {
if (zend_hash_find(HASH_OF(class), tmp_name, strlen(tmp_name)+1, (void**) &tmp_zval) == SUCCESS) {
return tmp_zval;
}
return NULL;