From 5707fdf0ebc247c9381a3ac4e38953573b317a63 Mon Sep 17 00:00:00 2001 From: zerico <71151164+ZERICO2005@users.noreply.github.com> Date: Wed, 4 Feb 2026 08:25:31 -0700 Subject: [PATCH] fixed usbdrvce and srldrvce include guards --- src/srldrvce/srldrvce.h | 6 +++--- src/usbdrvce/usbdrvce.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/srldrvce/srldrvce.h b/src/srldrvce/srldrvce.h index 779020b22..bc63b4075 100644 --- a/src/srldrvce/srldrvce.h +++ b/src/srldrvce/srldrvce.h @@ -8,8 +8,8 @@ * a computer with minimal setup required on the other end. */ -#ifndef H_SRLDRVCE -#define H_SRLDRVCE +#ifndef SRLDRVCE_H +#define SRLDRVCE_H #include #include @@ -161,4 +161,4 @@ usb_error_t srl_UsbEventCallback(usb_event_t event, void *event_data, } #endif -#endif +#endif /* SRLDRVCE_H */ diff --git a/src/usbdrvce/usbdrvce.h b/src/usbdrvce/usbdrvce.h index ab91fb23b..a2232c05e 100644 --- a/src/usbdrvce/usbdrvce.h +++ b/src/usbdrvce/usbdrvce.h @@ -14,8 +14,8 @@ * measure, many routines will return \c USB_ERROR_SYSTEM if this happens. */ -#ifndef H_USBDRVCE -#define H_USBDRVCE +#ifndef USBDRVCE_H +#define USBDRVCE_H #include #include @@ -1289,4 +1289,4 @@ uint24_t usb_GetCounter(void); } #endif -#endif +#endif /* USBDRVCE_H */