From 1c9f076109b15af6e03f92d9b80034d034d5b6cd Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Sat, 15 Apr 2017 00:06:19 +0300 Subject: [PATCH] Drop the only local variable declaration within a for-loop (C99) Nothing happens at least with gcc by default, but this is the only C99 (or after) specific declaration, so change it to normal style. Signed-off-by: Tomohiro Kusumi Signed-off-by: Jens Axboe --- parse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parse.c b/parse.c index fd5605f0..4d4fddde 100644 --- a/parse.c +++ b/parse.c @@ -135,6 +135,7 @@ static unsigned long long get_mult_time(const char *str, int len, const char *p = str; char *c; unsigned long long mult = 1; + int i; /* * Go forward until we hit a non-digit, or +/- sign @@ -153,7 +154,7 @@ static unsigned long long get_mult_time(const char *str, int len, } c = strdup(p); - for (int i = 0; i < strlen(c); i++) + for (i = 0; i < strlen(c); i++) c[i] = tolower(c[i]); if (!strncmp("us", c, 2) || !strncmp("usec", c, 4)) -- 2.25.1