summaryrefslogtreecommitdiffstats
path: root/usr.sbin/dvmrpctl
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2007-10-15 02:16:35 +0000
committerderaadt <deraadt@openbsd.org>2007-10-15 02:16:35 +0000
commitdb93f2f190a97cf884a6e1d301bb8ba4fa3e4150 (patch)
treef069332d64f0f32b176da5529652765754c84c83 /usr.sbin/dvmrpctl
parentregen (diff)
downloadwireguard-openbsd-db93f2f190a97cf884a6e1d301bb8ba4fa3e4150.tar.xz
wireguard-openbsd-db93f2f190a97cf884a6e1d301bb8ba4fa3e4150.zip
specifying int instead of just unsigned is better style
Diffstat (limited to 'usr.sbin/dvmrpctl')
-rw-r--r--usr.sbin/dvmrpctl/dvmrpctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dvmrpctl/dvmrpctl.c b/usr.sbin/dvmrpctl/dvmrpctl.c
index 415a0f080b5..f9929e5d423 100644
--- a/usr.sbin/dvmrpctl/dvmrpctl.c
+++ b/usr.sbin/dvmrpctl/dvmrpctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dvmrpctl.c,v 1.3 2007/05/30 02:21:08 henning Exp $ */
+/* $OpenBSD: dvmrpctl.c,v 1.4 2007/10/15 02:16:35 deraadt Exp $ */
/*
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -444,7 +444,7 @@ fmt_timeframe_core(time_t t)
char *buf;
static char tfbuf[TF_BUFS][TF_LEN]; /* ring buffer */
static int idx = 0;
- unsigned sec, min, hrs, day, week;
+ unsigned int sec, min, hrs, day, week;
if (t == 0)
return ("Stopped");