Another Mac build fix.

There's no atomic 64-bit read; you have to add 0. So we need a const_cast.

Change-Id: I0e693fe9c1262797c68e2c960551257d5dbf9618
diff --git a/src/atomic.cc b/src/atomic.cc
index e4252fd..16d1934 100644
--- a/src/atomic.cc
+++ b/src/atomic.cc
@@ -67,7 +67,7 @@
 }
 
 int64_t QuasiAtomicRead64(volatile const int64_t* addr) {
-  return OSAtomicAdd64Barrier(0, addr);
+  return OSAtomicAdd64Barrier(0, const_cast<volatile int64_t*>(addr));
 }
 #endif