summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2008-07-01 07:56:24 +0000
committerAntony Dovgal <tony2001@php.net>2008-07-01 07:56:24 +0000
commit2f2953760b16ff362a4e2b57f32d925f91924251 (patch)
treea0b675a64a8ddb86e919a48fd88a75791e064de5
parente03518401794921e923e94f8727858a97194fad6 (diff)
downloadphp-git-2f2953760b16ff362a4e2b57f32d925f91924251.tar.gz
fix typo
-rw-r--r--ext/wddx/wddx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c
index c326a7ef33..257eb6d723 100644
--- a/ext/wddx/wddx.c
+++ b/ext/wddx/wddx.c
@@ -1290,7 +1290,7 @@ PHP_FUNCTION(wddx_add_vars)
long packet_id;
wddx_packet *packet = NULL;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l+", packet_id, &args, &num_args) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l+", &packet_id, &args, &num_args) == FAILURE) {
return;
}