nss-packages-qosmio/qca-mcs/patches/0003-fix-header-guard-gcc-15.patch
Sean Khan 062ae3a501 qca-mcs: fix header-guard error for gcc 15
GCC 15 has stricter checks for header macros where
mismatches between `#ifndef` and `#define` are flagged as errors.

Signed-off-by: Sean Khan <datapronix@protonmail.com>
2025-04-27 13:45:02 -04:00

12 lines
165 B
Diff

--- a/mc_ovs.h
+++ b/mc_ovs.h
@@ -14,7 +14,7 @@
*/
#ifndef _MC_OVS_H_
-#define _MC_OVS_H
+#define _MC_OVS_H_
int mc_ovs_init(void);
void mc_ovs_exit(void);