diff options
author | 2012-11-27 05:38:08 +0000 | |
---|---|---|
committer | 2012-11-27 05:38:08 +0000 | |
commit | 3fd706c4baf981b433aab2e531db6bafffa108e8 (patch) | |
tree | 1a82045ecd012e98a9ed707a77bf4509b908b3b7 | |
parent | Add format attributes to the proper functions and then fix the warnings (diff) | |
download | wireguard-openbsd-3fd706c4baf981b433aab2e531db6bafffa108e8.tar.xz wireguard-openbsd-3fd706c4baf981b433aab2e531db6bafffa108e8.zip |
Fix type typo
ok henning@
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 928c2db51a9..250b18bf751 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.167 2012/11/15 19:55:08 sthen Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.168 2012/11/27 05:38:08 guenther Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -791,7 +791,7 @@ print_neighbor_msgstats(struct peer *p) } void -print_timer(const char *name, timer_t d) +print_timer(const char *name, time_t d) { printf(" %-20s ", name); |