diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-11-27 05:38:09 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-11-27 05:38:09 +0000 |
commit | 0ee35a270f40d11944434e04a3ce3079ebecc63a (patch) | |
tree | a8f97413e277b0851d376c32014995c7647f02c0 | |
parent | 742d3bc6c31affcb21821ad1e45a65224da966a7 (diff) |
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); |