diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-12-14 23:11:35 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-12-14 23:11:35 +0100 |
commit | fa0b3201783b6e06966edf4e46645751d943d824 (patch) | |
tree | 406ed3f068b09959398e3d480b588c5d4f47b6ab /src/plugins/php/weechat-php.c | |
parent | ffa933bcf89b1d470cf816551b515eddd2a10426 (diff) | |
download | weechat-fa0b3201783b6e06966edf4e46645751d943d824.zip |
core: fix style
Diffstat (limited to 'src/plugins/php/weechat-php.c')
-rw-r--r-- | src/plugins/php/weechat-php.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/php/weechat-php.c b/src/plugins/php/weechat-php.c index 23890a3d5..39d909557 100644 --- a/src/plugins/php/weechat-php.c +++ b/src/plugins/php/weechat-php.c @@ -708,7 +708,7 @@ weechat_php_load (const char *filename, const char *code) memset (&file_handle, 0, sizeof (file_handle)); file_handle.type = ZEND_HANDLE_FILENAME; #if PHP_VERSION_ID >= 80100 - file_handle.filename = zend_string_init(filename, strlen(filename), 0); + file_handle.filename = zend_string_init (filename, strlen(filename), 0); #else file_handle.filename = filename; #endif |