diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2005-04-12 15:26:48 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2005-04-12 15:26:48 +0000 |
commit | 77712da42323afdeb719e34c69d44e7ac77c45c0 (patch) | |
tree | 2a1333ca2cfe52dd664cce8face7fcec8e76ef3b /sbin/routed/table.c | |
parent | 1bbbd90b0e5d8fb9d46b64112c92fdbfd71a52e8 (diff) |
A little bit of cleanup (missing format string arguments, some signed/
unsigned conversion). OK henning
Diffstat (limited to 'sbin/routed/table.c')
-rw-r--r-- | sbin/routed/table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/routed/table.c b/sbin/routed/table.c index 8b2e71f3b82..5cd6455272b 100644 --- a/sbin/routed/table.c +++ b/sbin/routed/table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: table.c,v 1.17 2005/03/22 12:34:13 henning Exp $ */ +/* $OpenBSD: table.c,v 1.18 2005/04/12 15:26:47 cloder Exp $ */ /* * Copyright (c) 1983, 1988, 1993 @@ -713,7 +713,7 @@ again: addrname(dst, mask, 0), naddr_ntoa(gate), strerror(errno)); } else { - msglog("write(rt_sock) wrote %d instead of %d", + msglog("write(rt_sock) wrote %ld instead of %d", cc, w.w_rtm.rtm_msglen); } #endif |