Merge pull request #598 from neheb/oon2

oons-dlep-radio: fix compilation with GCC 10
This commit is contained in:
Moritz Warning 2020-09-30 17:09:49 +02:00 committed by GitHub
commit a42325b471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
--- a/src-plugins/generic/dlep/radio/dlep_radio_internal.h
+++ b/src-plugins/generic/dlep/radio/dlep_radio_internal.h
@@ -49,6 +49,6 @@
#include "core/oonf_logging.h"
/* headers only for use inside the DLEP_RADIO subsystem */
-enum oonf_log_source LOG_DLEP_RADIO;
+extern enum oonf_log_source LOG_DLEP_RADIO;
#endif /* DLEP_RADIO_INTERNAL_H_ */
--- a/src-plugins/generic/nl80211_listener/nl80211_internal.h
+++ b/src-plugins/generic/nl80211_listener/nl80211_internal.h
@@ -49,6 +49,6 @@
#include "core/oonf_logging.h"
/* headers only for use inside the NL80211 subsystem */
-enum oonf_log_source LOG_NL80211;
+extern enum oonf_log_source LOG_NL80211;
#endif /* NL80211_INTERNAL_H_ */