commit | 5f9614cf9a8003a772e48d9d2ae5b2877d08a721 | [log] [tgz] |
---|---|---|
author | Roger Meier <roger@apache.org> | 周日 11月 21 16:59:05 2010 +0000 |
committer | Roger Meier <roger@apache.org> | 周日 11月 21 16:59:05 2010 +0000 |
tree | e47460069ba027363c7db20592070be609f8b28e | |
parent | d3bfe700308fa00eeed4bfa9cd76283c194c2d4a [diff] [blame] |
THRIFT-916 long long becomes int64_t Patch: Christian Lavoie git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1037500 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/contrib/fb303/TClientInfo.cpp b/contrib/fb303/TClientInfo.cpp index d093017..e07eaa8 100644 --- a/contrib/fb303/TClientInfo.cpp +++ b/contrib/fb303/TClientInfo.cpp
@@ -160,7 +160,7 @@ char buf[256]; snprintf(buf, sizeof buf, "%d %s %s %.3f %llu", i, addrStr, callStr, secs, - (unsigned long long)info->getNCalls()); + (uint64_t)info->getNCalls()); result.push_back(buf); }