summaryrefslogtreecommitdiff
path: root/checksums.c
diff options
context:
space:
mode:
Diffstat (limited to 'checksums.c')
-rw-r--r--checksums.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/checksums.c b/checksums.c
index f6188c75..01ee1610 100644
--- a/checksums.c
+++ b/checksums.c
@@ -114,11 +114,11 @@ STATIC void GC_update_check_page(struct hblk *h, int index)
word GC_bytes_in_used_blocks = 0;
-STATIC void GC_CALLBACK GC_add_block(struct hblk *h,
- GC_word dummy GC_ATTR_UNUSED)
+STATIC void GC_CALLBACK GC_add_block(struct hblk *h, GC_word dummy)
{
hdr * hhdr = HDR(h);
+ UNUSED_ARG(dummy);
GC_bytes_in_used_blocks += (hhdr->hb_sz + HBLKSIZE-1) & ~(HBLKSIZE-1);
}