summaryrefslogtreecommitdiff
path: root/config/custom_scudo_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config/custom_scudo_config.h')
-rw-r--r--config/custom_scudo_config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/custom_scudo_config.h b/config/custom_scudo_config.h
index 26f590e3c25..a0fa59230ce 100644
--- a/config/custom_scudo_config.h
+++ b/config/custom_scudo_config.h
@@ -133,7 +133,7 @@ struct AndroidNormalConfig {
template <typename Config> using SecondaryT = MapAllocator<Config>;
};
-struct AndroidSvelteConfig {
+struct AndroidLowMemoryConfig {
#if defined(__aarch64__)
static const bool MaySupportMemoryTagging = true;
#else
@@ -173,8 +173,8 @@ struct AndroidSvelteConfig {
template <typename Config> using SecondaryT = MapAllocator<Config>;
};
-#if defined(SVELTE_ENABLED)
-typedef AndroidSvelteConfig Config;
+#if defined(SCUDO_LOW_MEMORY)
+typedef AndroidLowMemoryConfig Config;
#else
typedef AndroidNormalConfig Config;
#endif