]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
LogEntry.h: init LogEntry::prio in constructor
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Thu, 25 Sep 2014 11:34:47 +0000 (13:34 +0200)
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Wed, 1 Oct 2014 14:03:28 +0000 (16:03 +0200)
CID 1240202 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)
 uninit_member: Non-static class member prio is not initialized
 in this constructor nor in any functions that it calls.

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
src/common/LogEntry.h

index 7329595fd718b0ee6e54ecad1f5106b5fc50923a..c6c16b25e2789d54e3cea4d218226e96eabbd304 100644 (file)
@@ -75,7 +75,7 @@ struct LogEntry {
   string msg;
   string channel;
 
-  LogEntry() : seq(0) {}
+  LogEntry() : seq(0), prio(CLOG_DEBUG) {}
 
   LogEntryKey key() const { return LogEntryKey(who, stamp, seq); }
 
@@ -122,12 +122,12 @@ inline ostream& operator<<(ostream& out, clog_type t)
     return out << "[DBG]";
   case CLOG_INFO:
     return out << "[INF]";
+  case CLOG_SEC:
+    return out << "[SEC]";
   case CLOG_WARN:
     return out << "[WRN]";
   case CLOG_ERROR:
     return out << "[ERR]";
-  case CLOG_SEC:
-    return out << "[SEC]";
   default:
     return out << "[???]";
   }