diff options
author | Antony Dovgal <tony2001@php.net> | 2006-05-18 21:24:04 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-05-18 21:24:04 +0000 |
commit | 80d7ac0e9e5283a755ff555ecbd1bec6fb06d45f (patch) | |
tree | 0136651ed26f7bff9d05e06a500da5c408ea62a3 /Zend/zend_interfaces.c | |
parent | 749f4ac2ab56290317f0020010e2e558196bde10 (diff) | |
download | php-git-80d7ac0e9e5283a755ff555ecbd1bec6fb06d45f.tar.gz |
there is no %v in 5.2
Diffstat (limited to 'Zend/zend_interfaces.c')
-rwxr-xr-x | Zend/zend_interfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_interfaces.c b/Zend/zend_interfaces.c index 74441b3e10..a6a937c90c 100755 --- a/Zend/zend_interfaces.c +++ b/Zend/zend_interfaces.c @@ -432,7 +432,7 @@ int zend_user_serialize(zval *object, unsigned char **buffer, zend_uint *buf_len } if (result == FAILURE) { - zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "%v::serialize() must return a string or NULL", ce->name); + zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "%s::serialize() must return a string or NULL", ce->name); } return result; } |