diff options
author | 2016-02-18 15:33:24 +0000 | |
---|---|---|
committer | 2016-02-18 15:33:24 +0000 | |
commit | 853039567776d2debd3023fd1b0e2562d0f543ab (patch) | |
tree | 926625f444de08dbe052f0b39d07b72837473ef0 | |
parent | Add support for the Intel i219 network chip to the em(4) driver. (diff) | |
download | wireguard-openbsd-853039567776d2debd3023fd1b0e2562d0f543ab.tar.xz wireguard-openbsd-853039567776d2debd3023fd1b0e2562d0f543ab.zip |
Fix format string of a warning.
from markus@; OK claudio@
-rw-r--r-- | usr.sbin/ospfd/database.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/database.c b/usr.sbin/ospfd/database.c index 59b79a0e692..39b7ceb94af 100644 --- a/usr.sbin/ospfd/database.c +++ b/usr.sbin/ospfd/database.c @@ -1,4 +1,4 @@ -/* $OpenBSD: database.c,v 1.32 2015/03/13 02:31:29 claudio Exp $ */ +/* $OpenBSD: database.c,v 1.33 2016/02/18 15:33:24 bluhm Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -167,7 +167,7 @@ recv_db_description(struct nbr *nbr, char *buf, u_int16_t len) int dupe = 0; if (len < sizeof(dd_hdr)) { - log_warnx("recv_db_description: neighbor ID %s: ", + log_warnx("recv_db_description: neighbor ID %s: " "bad packet size", inet_ntoa(nbr->id)); return; } |