From a78af2bb06319f91b9f9554ff58a20d92677d79d Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 7 Apr 2019 11:51:12 +0200 Subject: [PATCH] rename crc -> crc_ctx. triggers overshadowing --- common/crc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/crc.h b/common/crc.h index 449b51bf3..7ad2fdc69 100644 --- a/common/crc.h +++ b/common/crc.h @@ -12,7 +12,7 @@ #include "common.h" //stdint, stddef, stdbool #include "util.h" // reflect, bswap_16 -typedef struct crc { +typedef struct crc_ctx { uint32_t state; int order; uint32_t polynom;