Index: rlz/mac/lib/rlz_value_store_mac.mm |
diff --git a/rlz/mac/lib/rlz_value_store_mac.mm b/rlz/mac/lib/rlz_value_store_mac.mm |
index 158fd88502bfa43425c4434dcb09a88398bb39de..44c73fd2b640bb1c7b33770ab26fd8051ef51375 100644 |
--- a/rlz/mac/lib/rlz_value_store_mac.mm |
+++ b/rlz/mac/lib/rlz_value_store_mac.mm |
@@ -67,13 +67,13 @@ bool RlzValueStoreMac::HasAccess(AccessType type) { |
} |
} |
-bool RlzValueStoreMac::WritePingTime(Product product, int64 time) { |
+bool RlzValueStoreMac::WritePingTime(Product product, int64_t time) { |
NSNumber* n = [NSNumber numberWithLongLong:time]; |
[ProductDict(product) setObject:n forKey:kPingTimeKey]; |
return true; |
} |
-bool RlzValueStoreMac::ReadPingTime(Product product, int64* time) { |
+bool RlzValueStoreMac::ReadPingTime(Product product, int64_t* time) { |
if (NSNumber* n = |
ObjCCast<NSNumber>([ProductDict(product) objectForKey:kPingTimeKey])) { |
*time = [n longLongValue]; |