summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 71085906ce..e296582482 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -389,7 +389,7 @@ static const char* formatter_time_unit_0_is_always(char *buffer, size_t buffer_s
389 (void) buffer_size; 389 (void) buffer_size;
390 (void) unit; 390 (void) unit;
391 if (val == -1) 391 if (val == -1)
392 return str(LANG__NEVER); 392 return str(LANG_NEVER);
393 else if (val == 0) 393 else if (val == 0)
394 return str(LANG_ALWAYS); 394 return str(LANG_ALWAYS);
395 return buffer; 395 return buffer;
@@ -398,7 +398,7 @@ static const char* formatter_time_unit_0_is_always(char *buffer, size_t buffer_s
398static int32_t getlang_time_unit_0_is_always(int value, int unit) 398static int32_t getlang_time_unit_0_is_always(int value, int unit)
399{ 399{
400 if (value == -1) 400 if (value == -1)
401 return LANG__NEVER; 401 return LANG_NEVER;
402 else if (value == 0) 402 else if (value == 0)
403 return LANG_ALWAYS; 403 return LANG_ALWAYS;
404 else 404 else