Skip to content

Commit

Permalink
made test/cli/helloworld/main.c compile and avoid newly reported wa…
Browse files Browse the repository at this point in the history
…rning
  • Loading branch information
firewave committed Mar 8, 2024
1 parent 54bb740 commit aa4b7b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cli/helloworld/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

int main(void) {
(void)printf("Hello world!\n");
x = 3 / 0; // ERROR
int x = 3 / 0; (void)x; // ERROR
return 0;
}

Expand Down

0 comments on commit aa4b7b9

Please sign in to comment.