diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2009-02-05 09:57:13 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2009-02-05 09:57:13 +0000 |
commit | 34d3a61dd4c4cefaa9451e67c512271fbe4a3da5 (patch) | |
tree | 33be96a044bf90d223c6f715d101a129b4d1e98a /usr.sbin | |
parent | d4c2c3cd3a2b5ad0055f2869a3776c151d227a52 (diff) |
fix format string
ok naddy@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rtsold/rtsol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rtsold/rtsol.c b/usr.sbin/rtsold/rtsol.c index 8f7b8bd6e47..d39401aa6f1 100644 --- a/usr.sbin/rtsold/rtsol.c +++ b/usr.sbin/rtsold/rtsol.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtsol.c,v 1.16 2009/02/03 19:00:48 chl Exp $ */ +/* $OpenBSD: rtsol.c,v 1.17 2009/02/05 09:57:12 chl Exp $ */ /* $KAME: rtsol.c,v 1.15 2002/05/31 10:10:03 itojun Exp $ */ /* @@ -262,7 +262,7 @@ rtsol_input(int s) if (i < sizeof(struct nd_router_advert)) { warnmsg(LOG_ERR, __func__, - "packet size(%d) is too short", i); + "packet size(%zd) is too short", i); return; } |