Updated Branches:
  refs/heads/master f4acef88e -> f2055d129

TS-1130, fix the building fails of previous commit.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/f2055d12
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/f2055d12
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/f2055d12

Branch: refs/heads/master
Commit: f2055d129b600106af956f4deccd31ece15b3c4e
Parents: f4acef8
Author: weijin <[email protected]>
Authored: Sun Apr 22 00:05:57 2012 +0800
Committer: weijin <[email protected]>
Committed: Sun Apr 22 00:13:37 2012 +0800

----------------------------------------------------------------------
 proxy/http/HttpTransact.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f2055d12/proxy/http/HttpTransact.cc
----------------------------------------------------------------------
diff --git a/proxy/http/HttpTransact.cc b/proxy/http/HttpTransact.cc
index 9ea25e8..afdae8b 100644
--- a/proxy/http/HttpTransact.cc
+++ b/proxy/http/HttpTransact.cc
@@ -8302,7 +8302,7 @@ ink_cluster_time(void)
       if (ink_atomic_cas((int32_t *) & global_time, *((int32_t *) & old), 
*((int32_t *) & local_time)))
         break;
     } else if (sizeof(ink_time_t) == 8) {
-      if ((ink_atomic_cas64((int64_t *) & global_time), *((int64_t *) & old), 
*((int64_t *) & local_time)))
+      if (ink_atomic_cas64((int64_t *) & global_time, *((int64_t *) & old), 
*((int64_t *) & local_time)))
         break;
     }
     old = global_time;

Reply via email to