From 6ad73ea57acf0e8ff5fcffb7a7ad61ef711205e6 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Sun, 14 Dec 2025 19:45:08 +0100 Subject: [PATCH] update code I was warned about --- cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } }