diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-22 16:21:51 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-22 16:21:51 +0000 |
commit | 236e588a73589dea135568f00601586107286865 (patch) | |
tree | 8726e9ff88cce4368528297b233f4bd1748ceadb /ndb/include | |
parent | f74303af57130ef84cfb796de058db3e10a868e9 (diff) | |
download | mariadb-git-236e588a73589dea135568f00601586107286865.tar.gz |
removing compiler warnings
Diffstat (limited to 'ndb/include')
-rw-r--r-- | ndb/include/kernel/LogLevel.hpp | 1 | ||||
-rw-r--r-- | ndb/include/mgmapi/mgmapi.h | 5 |
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 */ |