Skip to content

Commit 8310159

Browse files
committed
Fix compilation error after I renitialised error message
1 parent 0e616e9 commit 8310159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/streams/plain_wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,7 @@ static int php_plain_files_metadata(php_stream_wrapper *wrapper, const char *url
14471447
return 0;
14481448
}
14491449
if (ret == -1) {
1450-
php_error_docref(NULL, url, E_WARNING, "(%s) Operation failed: %s", url, strerror(errno));
1450+
php_error_docref(NULL, E_WARNING, "(%s) Operation failed: %s", url, strerror(errno));
14511451
return 0;
14521452
}
14531453
php_clear_stat_cache(0, NULL, 0);

0 commit comments

Comments
 (0)