We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea8d764 commit 023f124Copy full SHA for 023f124
scripts/sorttable.c
@@ -857,7 +857,7 @@ static void *sort_mcount_loc(void *arg)
857
for (void *ptr = vals; ptr < vals + size; ptr += long_size) {
858
uint64_t key;
859
860
- key = long_size == 4 ? r((uint32_t *)ptr) : r8((uint64_t *)ptr);
+ key = long_size == 4 ? *(uint32_t *)ptr : *(uint64_t *)ptr;
861
if (!find_func(key)) {
862
if (long_size == 4)
863
*(uint32_t *)ptr = 0;
0 commit comments