From d94c197637f3c6dec83092dfd7f76c8f8bebde60 Mon Sep 17 00:00:00 2001 From: David Soria Parra Date: Tue, 20 May 2008 13:28:31 +0000 Subject: [PATCH] Coding style --- ext/soap/soap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/soap/soap.c b/ext/soap/soap.c index c6634a0ba5..17abdfc327 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -2851,8 +2851,9 @@ PHP_METHOD(SoapClient, SoapClient) if (zend_ascii_hash_find(ht, "connection_timeout", sizeof("connection_timeout"), (void**)&tmp) == SUCCESS) { convert_to_long(*tmp); - if(Z_LVAL_PP(tmp) >= 0) + if(Z_LVAL_PP(tmp) >= 0) { client->connection_timeout = Z_LVAL_PP(tmp); + } } if (context) { -- 2.50.1