Skip to content

Commit

Permalink
Remove meaningless const qualifier in loc_addr.c
Browse files Browse the repository at this point in the history
  • Loading branch information
wdeconinck committed Jun 11, 2024
1 parent 50a740e commit b9ac242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fiat/util/loc_addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
intptr_t
loc_addr_(const char *p)
{
return (intptr_t)(p) - (const intptr_t)(0);
return (intptr_t)(p) - (intptr_t)(0);
}

0 comments on commit b9ac242

Please sign in to comment.