소스 검색

[http] Fix size_t format specifiers

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 13 년 전
부모
커밋
00afad8122
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/net/tcp/http.c

+ 1
- 1
src/net/tcp/http.c 파일 보기

@@ -652,7 +652,7 @@ static void http_step ( struct http_request *http ) {
652 652
 
653 653
 	/* Determine type of request */
654 654
 	partial = ( http->partial_len != 0 );
655
-	snprintf ( range, sizeof ( range ), "%d-%d", http->partial_start,
655
+	snprintf ( range, sizeof ( range ), "%zd-%zd", http->partial_start,
656 656
 		   ( http->partial_start + http->partial_len - 1 ) );
657 657
 
658 658
 	/* Mark request as transmitted */

Loading…
취소
저장