update code I was warned about

This commit is contained in:
2025-12-14 19:45:08 +01:00
parent c2d632b0b9
commit 6ad73ea57a
+1 -1
View File
@@ -4,7 +4,7 @@
#include <string.h> #include <string.h>
static void cli_print_indentation(args_t args) { 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"); printf("\t");
} }
} }