From c8113770e85adc0d16f9a65ecfae23962c0fd097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 29 Mar 2007 07:23:49 +0000 Subject: [PATCH] Deterministically set the default refresh interval to one second. Approved by: phk MFC after: 1 week --- usr.sbin/gstat/gstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/gstat/gstat.c b/usr.sbin/gstat/gstat.c index 87d638106d5..f982235044d 100644 --- a/usr.sbin/gstat/gstat.c +++ b/usr.sbin/gstat/gstat.c @@ -52,7 +52,7 @@ #include static int flag_a, flag_c, flag_d; -static int flag_I = 500000; +static int flag_I = 1000000; static void usage(void);