aboutsummaryrefslogtreecommitdiffstats
path: root/t/helper/test-tool.c
diff options
context:
space:
mode:
Diffstat (limited to 't/helper/test-tool.c')
-rw-r--r--t/helper/test-tool.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/helper/test-tool.c b/t/helper/test-tool.c
index 1ebb69a5dc..4a7aa993ba 100644
--- a/t/helper/test-tool.c
+++ b/t/helper/test-tool.c
@@ -101,7 +101,6 @@ static NORETURN void die_usage(void)
int cmd_main(int argc, const char **argv)
{
- int i;
const char *working_directory = NULL;
struct option options[] = {
OPT_STRING('C', NULL, &working_directory, "directory",
@@ -120,7 +119,7 @@ int cmd_main(int argc, const char **argv)
if (working_directory && chdir(working_directory) < 0)
die("Could not cd to '%s'", working_directory);
- for (i = 0; i < ARRAY_SIZE(cmds); i++) {
+ for (size_t i = 0; i < ARRAY_SIZE(cmds); i++) {
if (!strcmp(cmds[i].name, argv[1])) {
argv++;
argc--;