commit | 5f9614cf9a8003a772e48d9d2ae5b2877d08a721 | [log] [tgz] |
---|---|---|
author | Roger Meier <roger@apache.org> | Sun Nov 21 16:59:05 2010 +0000 |
committer | Roger Meier <roger@apache.org> | Sun Nov 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/test/cpp/src/TestClient.cpp b/test/cpp/src/TestClient.cpp index 4fcf6b1..897153a 100644 --- a/test/cpp/src/TestClient.cpp +++ b/test/cpp/src/TestClient.cpp
@@ -42,7 +42,7 @@ // Current time, microseconds since the epoch uint64_t now() { - long long ret; + int64_t ret; struct timeval tv; gettimeofday(&tv, NULL);