Skip to content

Commit

Permalink
Fix pedantic warning
Browse files Browse the repository at this point in the history
  • Loading branch information
flowerysong committed Oct 15, 2024
1 parent 18e3866 commit 2ba62ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openarc/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ config_dump(struct config *cfg, FILE *out, const char *name)
}
else
{
fprintf(out, "%p: \"%s\" ", cur, cur->cfg_name);
fprintf(out, "%p: \"%s\" ", (void *) cur, cur->cfg_name);
}

switch (cur->cfg_type)
Expand Down

0 comments on commit 2ba62ad

Please sign in to comment.