From aaee682c8eec2e906a0bfe090bab60d2d3639df4 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Sun, 2 Feb 2020 15:14:03 -0500 Subject: changed default timer # to 0 --- timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timer.c b/timer.c index d361d0b..09f42bf 100644 --- a/timer.c +++ b/timer.c @@ -8,7 +8,7 @@ int main(int argc, char** argv){ perror("format: `timer mins:secs [# of timers to run]`"); return 1; } - int times = 1; + int times = 0; if (argc >= 3){ sscanf(argv[2], "%d", ×); } -- cgit