aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvi Drissman <avi@chromium.org>2015-12-26 15:42:35 -0500
committerAvi Drissman <avi@chromium.org>2015-12-26 20:44:58 +0000
commitd9ecb3bd87504815d4c58a6a8b9031deb2498d19 (patch)
treef4ba46eea4299196cd8bb05a89ae1c4dbdb0856f
parent8ab869c043ac95994e4e8461038902e368aaa70e (diff)
downloadsystem_api-d9ecb3bd87504815d4c58a6a8b9031deb2498d19.tar.gz
Switch to standard integer types in cryptohome.h.
BUG=138542 TBR=derat@chromium.org Change-Id: Ie240ae546bd09f12ffdeffa0c38ca97381daeabe Reviewed-on: https://chromium-review.googlesource.com/320000 Reviewed-by: Avi Drissman <avi@chromium.org> Commit-Queue: Avi Drissman <avi@chromium.org> Tested-by: Avi Drissman <avi@chromium.org>
-rw-r--r--constants/cryptohome.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/constants/cryptohome.h b/constants/cryptohome.h
index 7c5c512..8238aa9 100644
--- a/constants/cryptohome.h
+++ b/constants/cryptohome.h
@@ -5,10 +5,12 @@
#ifndef CONSTANTS_CRYPTOHOME_H_
#define CONSTANTS_CRYPTOHOME_H_
+#include <stdint.h>
+
namespace cryptohome {
// Cleanup is trigerred if the amount of free disk space goes below this value.
-const int64 kMinFreeSpaceInBytes = 512 * 1LL << 20;
+const int64_t kMinFreeSpaceInBytes = 512 * 1LL << 20;
} // namespace cryptohome