summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/keymaster/keymaster_tags.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/keymaster/keymaster_tags.h b/include/keymaster/keymaster_tags.h
index e8188e8..29eae7c 100644
--- a/include/keymaster/keymaster_tags.h
+++ b/include/keymaster/keymaster_tags.h
@@ -108,7 +108,7 @@ template <keymaster_tag_type_t tag_type, keymaster_tag_t tag> class TypedTag {
// NOLINTNEXTLINE(google-explicit-constructor)
inline operator keymaster_tag_t() { return tag; }
// NOLINTNEXTLINE(google-runtime-int)
- inline long masked_tag() { return static_cast<long>(keymaster_tag_mask_type(tag)); }
+ inline int masked_tag() { return static_cast<int>(keymaster_tag_mask_type(tag)); }
};
template <keymaster_tag_type_t tag_type, keymaster_tag_t tag, typename KeymasterEnum>
@@ -126,7 +126,7 @@ class TypedEnumTag {
// NOLINTNEXTLINE(google-explicit-constructor)
inline operator keymaster_tag_t() { return tag; }
// NOLINTNEXTLINE(google-runtime-int)
- inline long masked_tag() { return static_cast<long>(keymaster_tag_mask_type(tag)); }
+ inline int masked_tag() { return static_cast<int>(keymaster_tag_mask_type(tag)); }
};
#ifdef KEYMASTER_NAME_TAGS