Skip to content

Commit

Permalink
fix implicit declaration of g_printf warning
Browse files Browse the repository at this point in the history
it's inconsistent with other functions in this file

for puppylinux-woof-CE#160
  • Loading branch information
step- committed Apr 19, 2024
1 parent e86c787 commit 8a3e911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/automaton.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ print_program()

for (pc = 0; pc < instruction_counter; ++pc) {
command = program[pc];
g_printf("%5d ", pc);
printf("%5d ", pc);
print_command(command);
}
}
Expand Down

0 comments on commit 8a3e911

Please sign in to comment.