Skip to content

Commit

Permalink
Aquarium: Fix formatting suggestion by GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
obiwac committed Feb 16, 2025
1 parent 773296e commit 2125f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/class/aquarium.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ static int prep_exec(aquarium_state_t* state, flamingo_arg_list_t* args) {
bss->state = state;
bss->cmd = cmd;

return add_build_step(MAGIC ^ strhash(__func__) + exec_count++, "Executing command on aquarium", exec_step, bss);
return add_build_step((MAGIC ^ strhash(__func__)) + exec_count++, "Executing command on aquarium", exec_step, bss);
}

static int prep_image(aquarium_state_t* state, flamingo_arg_list_t* args, flamingo_val_t** rv) {
Expand Down

0 comments on commit 2125f38

Please sign in to comment.