summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-15 13:35:53 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-15 13:35:53 +0000
commitcd28c732ba12c1a405b81a2aba30f46d44c56bd9 (patch)
tree754282ca4bad7d1e32d326cf961af88300521ab9 /cpukit/libnetworking
parent2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-cd28c732ba12c1a405b81a2aba30f46d44c56bd9.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')
-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);
}