diff --git a/cli.c b/cli.c index 9a10dcb..ecc7355 100644 --- a/cli.c +++ b/cli.c @@ -4,7 +4,7 @@ #include static void cli_print_indentation(args_t args) { - for ( size_t i = 0; i < args.indentation; i++ ) { + for ( int i = 0; i < args.indentation; i++ ) { printf("\t"); } }