summaryrefslogtreecommitdiff
path: root/common/ctrace.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2001-02-26 22:21:15 +0000
committerTed Lemon <source@isc.org>2001-02-26 22:21:15 +0000
commitc466184540e5bfa0a26e9871e83c33e0e9e9eab1 (patch)
tree7471a221fc367f22ca3e99cdf1ea686340c22dbc /common/ctrace.c
parenta1ec58f60800a5a644961601f5093161aabb6057 (diff)
downloadisc-dhcp-c466184540e5bfa0a26e9871e83c33e0e9e9eab1.tar.gz
Fix up NetBSD/alpha build.
Diffstat (limited to 'common/ctrace.c')
-rw-r--r--common/ctrace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/ctrace.c b/common/ctrace.c
index 60988a64..bea933cb 100644
--- a/common/ctrace.c
+++ b/common/ctrace.c
@@ -68,8 +68,8 @@ void trace_interface_input (trace_type_t *ttype, unsigned len, char *buf)
isc_result_t status;
if (len != sizeof *tipkt) {
- log_error ("trace interface packet size mismatch: %d != %d",
- sizeof *tipkt, len);
+ log_error ("trace interface packet size mismatch: %ld != %d",
+ (long)(sizeof *tipkt), len);
return;
}
tipkt = (trace_interface_packet_t *)buf;