From 66f6c7facab8cbf4efd257e6e717801687e79d60 Mon Sep 17 00:00:00 2001 From: Dual Tachyon Date: Tue, 15 Aug 2023 14:56:56 +0100 Subject: [PATCH] Fixed type of code type. --- dcs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dcs.c b/dcs.c index bbd621bd..dfd5b8c5 100644 --- a/dcs.c +++ b/dcs.c @@ -76,8 +76,7 @@ uint32_t DCS_CalculateGolay(uint32_t CodeWord) return CodeWord | ((Word & 0x0FFE) << 12); } -uint32_t DCS_GetGolayCodeWord(uint8_t CodeType, uint8_t Option) - +uint32_t DCS_GetGolayCodeWord(DCS_CodeType_t CodeType, uint8_t Option) { uint32_t Code;