diff options
Diffstat (limited to 'src/plugins/php')
-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 |