1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 03:22:58 +02:00

Fix warning

This commit is contained in:
Zeev Suraski
2001-06-19 08:42:22 +00:00
parent 85bb9e77e4
commit 38085881a6

View File

@@ -1532,7 +1532,7 @@ do_fcall_common:
zend_hash_update(function_state.function_symbol_table, "this", sizeof("this"), &null_ptr, sizeof(zval *), (void **) &this_ptr);
if (!PZVAL_IS_REF(object.ptr)) {
zend_error(E_WARNING,"Problem with method call. Report this bug\n");
zend_error(E_WARNING, "Problem with method call - please report this bug");
}
*this_ptr = object.ptr;
object.ptr = NULL;