diff options
author | Mark Spruiell <mes@zeroc.com> | 2014-07-30 08:32:54 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2014-07-30 08:32:54 -0700 |
commit | 20cc22046703ab13f9d2a1d113e6a77b5fecebbe (patch) | |
tree | 914709345729775d4065dd7f2600fdde16d9005b /php/src/IcePHP/Connection.cpp | |
parent | adding missing generated subdir (diff) | |
download | ice-20cc22046703ab13f9d2a1d113e6a77b5fecebbe.tar.bz2 ice-20cc22046703ab13f9d2a1d113e6a77b5fecebbe.tar.xz ice-20cc22046703ab13f9d2a1d113e6a77b5fecebbe.zip |
ICE-5421 - upgrade to PHP 5.5
Diffstat (limited to 'php/src/IcePHP/Connection.cpp')
-rw-r--r-- | php/src/IcePHP/Connection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/php/src/IcePHP/Connection.cpp b/php/src/IcePHP/Connection.cpp index a9b780bab82..899b442af02 100644 --- a/php/src/IcePHP/Connection.cpp +++ b/php/src/IcePHP/Connection.cpp @@ -158,7 +158,7 @@ ZEND_METHOD(Ice_Connection, setACM) { if(Z_TYPE_P(t) != IS_LONG) { - invalidArgument("value for 'timeout' argument must be Unset or an integer"); + invalidArgument("value for 'timeout' argument must be Unset or an integer" TSRMLS_CC); RETURN_NULL(); } timeout = static_cast<Ice::Int>(Z_LVAL_P(t)); @@ -168,7 +168,7 @@ ZEND_METHOD(Ice_Connection, setACM) { if(Z_TYPE_P(c) != IS_LONG) { - invalidArgument("value for 'close' argument must be Unset or an enumerator of ACMClose"); + invalidArgument("value for 'close' argument must be Unset or an enumerator of ACMClose" TSRMLS_CC); RETURN_NULL(); } close = static_cast<Ice::ACMClose>(Z_LVAL_P(c)); @@ -178,7 +178,7 @@ ZEND_METHOD(Ice_Connection, setACM) { if(Z_TYPE_P(h) != IS_LONG) { - invalidArgument("value for 'heartbeat' argument must be Unset or an enumerator of ACMHeartbeat"); + invalidArgument("value for 'heartbeat' argument must be Unset or an enumerator of ACMHeartbeat" TSRMLS_CC); RETURN_NULL(); } heartbeat = static_cast<Ice::ACMHeartbeat>(Z_LVAL_P(h)); |