Fixed initialization order.

This commit is contained in:
lotodore
2009-01-11 21:10:12 +00:00
parent b5b1796b1e
commit b2ccee2267
+1 -1
View File
@@ -35,7 +35,7 @@ using namespace std;
#define SEND_LOG_INTERVAL_SEC 60 #define SEND_LOG_INTERVAL_SEC 60
SenderThread::SenderThread(SenderCallback &cb) SenderThread::SenderThread(SenderCallback &cb)
: m_callback(cb), m_bytesSent(0) : m_bytesSent(0), m_callback(cb)
{ {
} }