Skip to content

Commit 7318533

Browse files
authored
fixed usbdrvce and srldrvce include guards (#699)
1 parent 897cdc4 commit 7318533

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/srldrvce/srldrvce.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* a computer with minimal setup required on the other end.
99
*/
1010

11-
#ifndef H_SRLDRVCE
12-
#define H_SRLDRVCE
11+
#ifndef SRLDRVCE_H
12+
#define SRLDRVCE_H
1313

1414
#include <stdint.h>
1515
#include <stdbool.h>
@@ -161,4 +161,4 @@ usb_error_t srl_UsbEventCallback(usb_event_t event, void *event_data,
161161
}
162162
#endif
163163

164-
#endif
164+
#endif /* SRLDRVCE_H */

src/usbdrvce/usbdrvce.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
* measure, many routines will return \c USB_ERROR_SYSTEM if this happens.
1515
*/
1616

17-
#ifndef H_USBDRVCE
18-
#define H_USBDRVCE
17+
#ifndef USBDRVCE_H
18+
#define USBDRVCE_H
1919

2020
#include <stddef.h>
2121
#include <stdint.h>
@@ -1289,4 +1289,4 @@ uint24_t usb_GetCounter(void);
12891289
}
12901290
#endif
12911291

1292-
#endif
1292+
#endif /* USBDRVCE_H */

0 commit comments

Comments
 (0)