Skip to content

Commit c852fce

Browse files
committed
streams: use PRIu32 format specifier rather than u
The value is a uint32_t and this may depend on the platform how it is represented
1 parent a5e34c6 commit c852fce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main/streams/stream_errors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ PHPAPI php_stream_error_operation *php_stream_error_operation_begin(void)
283283

284284
if (state->operation_depth >= PHP_STREAM_ERROR_MAX_DEPTH) {
285285
php_error_docref(NULL, E_WARNING,
286-
"Stream error operation depth exceeded (%u), possible infinite recursion",
286+
"Stream error operation depth exceeded (%"PRIu32"), possible infinite recursion",
287287
state->operation_depth);
288288
return NULL;
289289
}

0 commit comments

Comments
 (0)