aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-11-07 13:36:44 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2014-11-07 13:36:44 -0500
commite363f56cf5764ea424a0daf85baa2546e1b6ca94 (patch)
treefa6b2692e044ae0ff236716e38bf56e27190b104
parent1bf4af391943fa1f822931d2e1def77f2708feda (diff)
use ull
-rw-r--r--fsbm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsbm.c b/fsbm.c
index 75a0e8e..ad58174 100644
--- a/fsbm.c
+++ b/fsbm.c
@@ -161,7 +161,7 @@ int main(int argc, char **argv) {
// parse the command line
int c;
- int interval = 10 * 100000;
+ unsigned long long interval = 10 * 100000;
while ((c = getopt (argc, argv, "bd:hv")) != -1)
switch (c)