summaryrefslogtreecommitdiff
path: root/contrib/fb303
diff options
context:
space:
mode:
authorRoger Meier <roger@apache.org>2010-11-21 16:59:05 +0000
committerRoger Meier <roger@apache.org>2010-11-21 16:59:05 +0000
commit5f9614cf9a8003a772e48d9d2ae5b2877d08a721 (patch)
treee47460069ba027363c7db20592070be609f8b28e /contrib/fb303
parentd3bfe700308fa00eeed4bfa9cd76283c194c2d4a (diff)
downloadthrift-5f9614cf9a8003a772e48d9d2ae5b2877d08a721.tar.gz
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
Diffstat (limited to 'contrib/fb303')
-rw-r--r--contrib/fb303/TClientInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fb303/TClientInfo.cpp b/contrib/fb303/TClientInfo.cpp
index d09301791..e07eaa8cb 100644
--- a/contrib/fb303/TClientInfo.cpp
+++ b/contrib/fb303/TClientInfo.cpp
@@ -160,7 +160,7 @@ void TClientInfoServerHandler::getStatsStrings(vector<string>& result) {
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);
}