diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-01-16 09:46:47 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-01-16 09:46:47 +0100 |
commit | 0b4778c377a5753a0deb9cfc697d4f62acf93a29 (patch) | |
tree | 1513cbdabd00e0c43ed9750107787791060a8398 /sapi/cli/php_cli_server.c | |
parent | 9d7e03c325473024e54c864f0379efc1bbf03e72 (diff) | |
download | php-git-0b4778c377a5753a0deb9cfc697d4f62acf93a29.tar.gz |
Fix #78880: Another bunch of spelling errors
Diffstat (limited to 'sapi/cli/php_cli_server.c')
-rw-r--r-- | sapi/cli/php_cli_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli_server.c b/sapi/cli/php_cli_server.c index d83451f5f3..dd26b5c971 100644 --- a/sapi/cli/php_cli_server.c +++ b/sapi/cli/php_cli_server.c @@ -261,7 +261,7 @@ int php_cli_server_get_system_time(char *buf) { gettimeofday(&tv, NULL); - /* TODO: should be checked for NULL tm/return vaue */ + /* TODO: should be checked for NULL tm/return value */ php_localtime_r(&tv.tv_sec, &tm); php_asctime_r(&tm, buf); return 0; |