Skip to content

Commit

Permalink
Fixed unused param
Browse files Browse the repository at this point in the history
Accidentally used a c23 feature.

MacOS runner didn't like that.
  • Loading branch information
Ratstail91 committed Dec 12, 2024
1 parent fce71a6 commit cf9affe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/cases/test_print.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

int counter = 0;

void count(const char*) {
void count(const char* msg) {
(void)msg;
counter++;
}

Expand Down

0 comments on commit cf9affe

Please sign in to comment.