summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/libc/res_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libnetworking/libc/res_debug.c')
-rw-r--r--cpukit/libnetworking/libc/res_debug.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpukit/libnetworking/libc/res_debug.c b/cpukit/libnetworking/libc/res_debug.c
index 19fb9180c8..8d41fa818d 100644
--- a/cpukit/libnetworking/libc/res_debug.c
+++ b/cpukit/libnetworking/libc/res_debug.c
@@ -98,6 +98,8 @@ static char sccsid[] = "@(#)res_debug.c 8.1 (Berkeley) 6/4/93";
static char rcsid[] = "$Id$";
#endif /* LIBC_SCCS and not lint */
+#include <inttypes.h>
+
#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
@@ -532,7 +534,7 @@ p_time(u_int32_t value) {
static char nbuf[40];
if (ns_format_ttl(value, nbuf, sizeof nbuf) < 0)
- sprintf(nbuf, "%u", value);
+ sprintf(nbuf, "%" PRIu32, value);
return (nbuf);
}