mirror of https://github.com/ipxe/ipxe.git
[http] Fix size_t format specifiers
Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/5/head
parent
2988b26653
commit
00afad8122
|
@ -652,7 +652,7 @@ static void http_step ( struct http_request *http ) {
|
||||||
|
|
||||||
/* Determine type of request */
|
/* Determine type of request */
|
||||||
partial = ( http->partial_len != 0 );
|
partial = ( http->partial_len != 0 );
|
||||||
snprintf ( range, sizeof ( range ), "%d-%d", http->partial_start,
|
snprintf ( range, sizeof ( range ), "%zd-%zd", http->partial_start,
|
||||||
( http->partial_start + http->partial_len - 1 ) );
|
( http->partial_start + http->partial_len - 1 ) );
|
||||||
|
|
||||||
/* Mark request as transmitted */
|
/* Mark request as transmitted */
|
||||||
|
|
Loading…
Reference in New Issue