summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/nfs
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-15 13:35:28 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-15 13:35:28 +0000
commit06e04f89bc4f75d9745e474ac2196cf7a9ea6301 (patch)
treee3dc146883c2fa6e90e33a887aed0e0d7419f5e6 /cpukit/libnetworking/nfs
parent2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-06e04f89bc4f75d9745e474ac2196cf7a9ea6301.tar.bz2
2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* libfs/src/rfs/rtems-rfs-block.c, libfs/src/rfs/rtems-rfs-buffer.c, libnetworking/nfs/bootp_subr.c: Misc. 64bit-compatibility fixes.
Diffstat (limited to 'cpukit/libnetworking/nfs')
-rw-r--r--cpukit/libnetworking/nfs/bootp_subr.c2
1 files changed, 1 insertions, 1 deletions
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);
}