Skip to content

Commit

Permalink
Remove unneeded brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-hughes committed Mar 12, 2024
1 parent 206aefb commit a59b751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allchblk.c
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ STATIC struct hblk *GC_allochblk_nth(size_t lb_adjusted, int k,
/* This function is called from the sweeper whenever an object is */
/* freed. */
GC_ATTR_NOINLINE GC_API void GC_CALL GC_free_profiler_hook(void * p) {
GC_noop1((word)(p));
GC_noop1((word)p);
}
# endif

Expand Down

0 comments on commit a59b751

Please sign in to comment.