Update rabit-inl.h

Fix missing parenthese
This commit is contained in:
Jianfeng Zhu 2015-04-24 14:09:47 +08:00
parent c60b284e1f
commit df8f917463

View File

@ -174,7 +174,7 @@ inline void TrackerPrintf(const char *fmt, ...) {
va_start(args, fmt);
vsnprintf(&msg[0], kPrintBuffer, fmt, args);
va_end(args);
msg.resize(strlen(msg.c_str());
msg.resize(strlen(msg.c_str()));
TrackerPrint(msg);
}
#endif