david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[misc] Fix building on OpenBSD

OpenBSD throws compiler warnings that we can't reproduce on Linux, for
some reason.

Original patch from Dewey Hylton <dewey@hyltown.com>.
This commit is contained in:
Michael Brown 2008-06-27 22:35:26 +01:00
parent b7882065f5
commit 2596a9aa9c
2 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,6 @@
* data structure.
*/
#include <stdio.h>
#include <gpxe/image.h>
#include <gpxe/malloc.h>
#include <gpxe/uaccess.h>
@ -25,8 +24,8 @@ struct image *embedded_image(void)
if ( reclaimed )
return NULL; /* Already reclaimed */
printf("Embedded image: %d bytes at %p\n",
eisize, _embedded_image_start);
DBG ( "Embedded image: %zd bytes at %p\n",
eisize, _embedded_image_start );
image = alloc_image();
if (!image)

View File

@ -189,7 +189,7 @@ static int pxe_tftp_open ( uint32_t ipaddress, unsigned int port,
if ( blksize < TFTP_DEFAULT_BLKSIZE )
blksize = TFTP_DEFAULT_BLKSIZE;
snprintf ( uri_string, sizeof ( uri_string ),
"tftp://%s:%d%s%s?blksize=%d",
"tftp://%s:%d%s%s?blksize=%zd",
inet_ntoa ( address ), ntohs ( port ),
( ( filename[0] == '/' ) ? "" : "/" ), filename, blksize );
DBG ( " %s", uri_string );