Skip to content

Commit

Permalink
Fix glog check type unmatch in Util.cpp (#353)
Browse files Browse the repository at this point in the history
* Fix glog check type unmatch in Util.cpp

#352
  • Loading branch information
gangliao authored Nov 4, 2016
1 parent 3424a4c commit 33004ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/utils/Util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 33004ec

Please sign in to comment.