aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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