diff options
Diffstat (limited to 'csum.h')
-rw-r--r-- | csum.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -19,8 +19,7 @@ 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 __maybe_unused) +static inline uint16_t calc_csum(void *addr, size_t len) { return csum(addr, len >> 1); } |