From 06e04f89bc4f75d9745e474ac2196cf7a9ea6301 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 15 Jun 2010 13:35:28 +0000 Subject: =?UTF-8?q?2010-06-15=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libfs/src/rfs/rtems-rfs-block.c, libfs/src/rfs/rtems-rfs-buffer.c, libnetworking/nfs/bootp_subr.c: Misc. 64bit-compatibility fixes. --- cpukit/libnetworking/nfs/bootp_subr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/libnetworking/nfs') diff --git a/cpukit/libnetworking/nfs/bootp_subr.c b/cpukit/libnetworking/nfs/bootp_subr.c index 34754ac77a..cdac406cdc 100644 --- a/cpukit/libnetworking/nfs/bootp_subr.c +++ b/cpukit/libnetworking/nfs/bootp_subr.c @@ -464,7 +464,7 @@ bootpc_call( } /* send/receive a number of times then return an error */ { uint32_t addr = ntohl(sin->sin_addr.s_addr); - printf("BOOTP timeout for server %lu.%lu.%lu.%lu\n", + printf("BOOTP timeout for server %"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32"\n", (addr >> 24) & 0xff, (addr >> 16) & 0xff, (addr >> 8) & 0xff, addr & 0xff); } -- cgit v1.2.3