diff options
author | twosee <twose@qq.com> | 2020-06-06 20:13:38 +0800 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-06-07 10:36:50 +0200 |
commit | 1b85e749c7e892db727806a92f4e215a8538ba9e (patch) | |
tree | c6f8b947d544635d6ace6517f4e02cecf31489fa /sapi/cli/php_cli.c | |
parent | 68fdad82c9a3d1d1fc03975b7b91fdb940c621e0 (diff) | |
download | php-git-1b85e749c7e892db727806a92f4e215a8538ba9e.tar.gz |
Fix warning of strict-prototypes
Closes GH-5673.
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index d068952343..f116bc475f 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -118,7 +118,7 @@ static DWORD orig_cp = 0; #define PHP_MODE_SHOW_INI_CONFIG 13 cli_shell_callbacks_t cli_shell_callbacks = { NULL, NULL, NULL }; -PHP_CLI_API cli_shell_callbacks_t *php_cli_get_shell_callbacks() +PHP_CLI_API cli_shell_callbacks_t *php_cli_get_shell_callbacks(void) { return &cli_shell_callbacks; } |