Skip to content

Commit 42022bc

Browse files
committed
Constify readonly var
1 parent 2ec012f commit 42022bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

win32/ioutil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ PW32IO int php_win32_ioutil_close(int fd)
286286
PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode)
287287
{/*{{{*/
288288
size_t path_len;
289-
wchar_t *my_path;
289+
const wchar_t *my_path;
290290

291291
if (!path) {
292292
SET_ERRNO_FROM_WIN32_CODE(ERROR_INVALID_PARAMETER);

0 commit comments

Comments
 (0)