Skip to content

Commit b1d8b14

Browse files
committed
Fix sprint format specifier
1 parent 8310159 commit b1d8b14

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
@@ -1417,7 +1417,7 @@ static int php_plain_files_metadata(php_stream_wrapper *wrapper, const char *url
14171417
case PHP_STREAM_META_OWNER:
14181418
if(option == PHP_STREAM_META_OWNER_NAME) {
14191419
if(php_get_uid_by_name((char *)value, &uid) != SUCCESS) {
1420-
php_error_docref(NULL, E_WARNING, "Unable to find uid for %s at &s", (char *)value, url);
1420+
php_error_docref(NULL, E_WARNING, "Unable to find uid for %s at %s", (char *)value, url);
14211421
return 0;
14221422
}
14231423
} else {

0 commit comments

Comments
 (0)