summaryrefslogtreecommitdiff
path: root/src/plugins/php
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2018-01-07 09:11:45 +0100
committerSébastien Helleu <flashcode@flashtux.org>2018-01-07 09:11:45 +0100
commit7ee88fb46c512c125191d6447ff1348dfc3254f3 (patch)
tree708d6960a34134455ceafe5f737d2d99ed344f5f /src/plugins/php
parent91f792416bd40c8e47d7f035e15f49732be368ce (diff)
downloadweechat-7ee88fb46c512c125191d6447ff1348dfc3254f3.zip
core: fix some styles
Diffstat (limited to 'src/plugins/php')
-rw-r--r--src/plugins/php/weechat-php.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/php/weechat-php.c b/src/plugins/php/weechat-php.c
index 04ae5afe0..15ce76401 100644
--- a/src/plugins/php/weechat-php.c
+++ b/src/plugins/php/weechat-php.c
@@ -549,8 +549,8 @@ weechat_php_exec (struct t_plugin_script *script, int ret_type,
/* Invoke func */
ret_value = NULL;
- memset(&fci, 0, sizeof (zend_fcall_info));
- memset(&fci_cache, 0, sizeof (zend_fcall_info_cache));
+ memset (&fci, 0, sizeof (zend_fcall_info));
+ memset (&fci_cache, 0, sizeof (zend_fcall_info_cache));
zfunc = weechat_php_func_map_get (function);
if (zfunc && zend_fcall_info_init (zfunc, 0, &fci, &fci_cache, NULL, NULL) == SUCCESS)