diff options
author | Anatol Belski <ab@php.net> | 2018-02-27 20:50:37 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2018-02-27 20:50:37 +0100 |
commit | 42022bc9439cd6d1210216ec40aa0930d37cb512 (patch) | |
tree | 60294e6f58c1b0d630280e6896f360cd0088afdd | |
parent | 2ec012fa2a806d7d4a9808a287efbcdf7753f3cb (diff) | |
download | php-git-42022bc9439cd6d1210216ec40aa0930d37cb512.tar.gz |
Constify readonly var
-rw-r--r-- | win32/ioutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ioutil.c b/win32/ioutil.c index 932b4a2fbc..5f119a9410 100644 --- a/win32/ioutil.c +++ b/win32/ioutil.c @@ -286,7 +286,7 @@ PW32IO int php_win32_ioutil_close(int fd) PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode) {/*{{{*/ size_t path_len; - wchar_t *my_path; + const wchar_t *my_path; if (!path) { SET_ERRNO_FROM_WIN32_CODE(ERROR_INVALID_PARAMETER); |