提交 33004ecf 编写于 作者: G gangliao 提交者: GitHub

Fix glog check type unmatch in Util.cpp (#353)

* Fix glog check type unmatch in Util.cpp

#352 
上级 3424a4c0
......@@ -106,7 +106,7 @@ pid_t getTID() {
#endif
pid_t tid = syscall(__NR_gettid);
#endif
CHECK_NE(tid, -1);
CHECK_NE((int)tid, -1);
return tid;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册