Skip to content

Commit

Permalink
Fix return type of function in test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerhard committed Nov 29, 2023
1 parent 19ca906 commit 0715d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/regression/79-modular/38-modular-unions.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ typedef union {
node_t *nptr;
} int_or_node;

void *write_node(int_or_node u, int is_node){
void write_node(int_or_node u, int is_node){
if(is_node){
u.nptr->value = 23;
} else {
Expand Down

0 comments on commit 0715d32

Please sign in to comment.