From a75f5febf4669737eda23aa609dc6bd132a8b6d4 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 9 Jun 2023 15:22:08 -0500 Subject: [PATCH] fix --- components/ratgdo/ratgdo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ratgdo/ratgdo.h b/components/ratgdo/ratgdo.h index bda7ee6..ba5f103 100644 --- a/components/ratgdo/ratgdo.h +++ b/components/ratgdo/ratgdo.h @@ -33,14 +33,14 @@ namespace ratgdo { // Forward declare RATGDOClient class RATGDOClient; - typedef struct { + struct cmd { uint64_t fixed; uint32_t data; inline bool operator!=(cmd const &other) const { return (fixed != other.fixed || data != other.data); } - } cmd; + }; typedef struct { cmd REBOOT1;