Skip to content

Commit

Permalink
Fix code scanning alert 54
Browse files Browse the repository at this point in the history
  • Loading branch information
henrygab committed Dec 30, 2024
1 parent 224e39b commit 90eb718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/syntax.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ SYNTAX_STATUS syntax_compile(void) {

if (syntax_io.out[syntax_io.out_cnt].command >= SYN_AUX_OUTPUT) {
if (syntax_io.out[syntax_io.out_cnt].has_bits == false) {
printf("Error: missing IO number for command %c at position %d. Try %c.0\r\n", c, current_position);
printf("Error: missing IO number for command %c at position %d. Try %c.0\r\n", c, current_position, c);
return SSTATUS_ERROR;
}

Expand Down

0 comments on commit 90eb718

Please sign in to comment.