summaryrefslogtreecommitdiff
path: root/ndb/include
diff options
context:
space:
mode:
Diffstat (limited to 'ndb/include')
-rw-r--r--ndb/include/kernel/LogLevel.hpp1
-rw-r--r--ndb/include/mgmapi/mgmapi.h5
2 files changed, 5 insertions, 1 deletions
diff --git a/ndb/include/kernel/LogLevel.hpp b/ndb/include/kernel/LogLevel.hpp
index be0627c98a8..6cfbe44af86 100644
--- a/ndb/include/kernel/LogLevel.hpp
+++ b/ndb/include/kernel/LogLevel.hpp
@@ -47,6 +47,7 @@ public:
LogLevel & operator= (const LogLevel &);
enum EventCategory {
+ llInvalid = -1,
llStartUp = CFG_LOGLEVEL_STARTUP - CFG_MIN_LOGLEVEL,
llShutdown = CFG_LOGLEVEL_SHUTDOWN - CFG_MIN_LOGLEVEL,
llStatistic = CFG_LOGLEVEL_STATISTICS - CFG_MIN_LOGLEVEL,
diff --git a/ndb/include/mgmapi/mgmapi.h b/ndb/include/mgmapi/mgmapi.h
index 41fd211063e..6dcf58b44e2 100644
--- a/ndb/include/mgmapi/mgmapi.h
+++ b/ndb/include/mgmapi/mgmapi.h
@@ -271,7 +271,10 @@ extern "C" {
* Log categories
*/
enum ndb_mgm_event_category {
- NDB_MGM_ILLEGAL_EVENT_CATEGORY = -1, /*< Invalid
+ /**
+ * Invalid
+ */
+ NDB_MGM_ILLEGAL_EVENT_CATEGORY = -1,
/**
* Events during all kinds of startups
*/