Chached printf format

This commit is contained in:
Max Holleman 2023-07-28 11:07:32 +02:00
parent 9352c8d3b8
commit 5022d1b096
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
add_executable(cexp add_executable(cexp
"main.c" "main.c"
"exp_list.c") "exp_list.c")

View File

@ -47,7 +47,7 @@ void print_list_items()
{ {
for (size_t i = 0; i < list_index_count; i++) for (size_t i = 0; i < list_index_count; i++)
{ {
PRINT_LINE("%i. [%s]", i, list[i].name); PRINT_LINE("%lu. [%s]", i, list[i].name);
} }
} }
struct exp_data* get_command(char* command) struct exp_data* get_command(char* command)