summaryrefslogtreecommitdiff
path: root/csum.h
diff options
context:
space:
mode:
Diffstat (limited to 'csum.h')
-rw-r--r--csum.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/csum.h b/csum.h
index 212faae..fceef2c 100644
--- a/csum.h
+++ b/csum.h
@@ -24,7 +24,8 @@ static inline unsigned short csum(unsigned short *buf, int nwords)
return ~sum;
}
-static inline uint16_t calc_csum(void *addr, size_t len, int ccsum)
+static inline uint16_t calc_csum(void *addr, size_t len,
+ int ccsum __maybe_unused)
{
return csum(addr, len >> 1);
}