h3: fix signedness of two printf masks

Follow-up to c2ca16f3ff #21799
This commit is contained in:
Viktor Szakats 2026-05-28 17:19:23 +02:00
parent c2ca16f3ff
commit a0c559ff03
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1064,7 +1064,7 @@ static nghttp3_ssize cb_h3_read_data_for_tunnel_stream(nghttp3_conn *conn,
}
CURL_TRC_CF(data, cf, "[%" PRId64 "] read req body -> "
"%zd vecs%s with %zu (buffered=%zu, left=%" FMT_OFF_T ")",
"%zu vecs%s with %zu (buffered=%zu, left=%" FMT_OFF_T ")",
H3_STREAM_ID(stream), nvecs,
*pflags == NGHTTP3_DATA_FLAG_EOF ? " EOF" : "",
nwritten, Curl_bufq_len(&stream->sendbuf),

View file

@ -1602,7 +1602,7 @@ static nghttp3_ssize cb_h3_read_req_body(nghttp3_conn *conn, int64_t stream_id,
}
CURL_TRC_CF(data, cf, "[%" PRId64 "] read req body -> "
"%zd vecs%s with %zu (buffered=%zu, left=%" FMT_OFF_T ")",
"%zu vecs%s with %zu (buffered=%zu, left=%" FMT_OFF_T ")",
stream->id, nvecs,
*pflags == NGHTTP3_DATA_FLAG_EOF ? " EOF" : "",
nwritten, Curl_bufq_len(&stream->sendbuf),