aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/time
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2016-07-25 11:24:59 +0200
committerCorinna Vinschen <corinna@vinschen.de>2016-08-15 10:56:58 +0200
commit542b970d4e09d74fd0a6d8787b9d82efe352c033 (patch)
tree93a51ee6c6980f703bb1ee514527649c0945249f /newlib/libc/time
parentfb4fb921c6236e2a0457d5de52bc82e1a27152a7 (diff)
downloadnewlib-542b970d4e09d74fd0a6d8787b9d82efe352c033.zip
newlib-542b970d4e09d74fd0a6d8787b9d82efe352c033.tar.gz
newlib-542b970d4e09d74fd0a6d8787b9d82efe352c033.tar.bz2
Rename __get_locale_XXX to __get_XXX_locale to use unified naming scheme
Signed-off by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libc/time')
-rw-r--r--newlib/libc/time/strftime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/time/strftime.c b/newlib/libc/time/strftime.c
index 0d5bbd5..9ff44f9 100644
--- a/newlib/libc/time/strftime.c
+++ b/newlib/libc/time/strftime.c
@@ -698,7 +698,7 @@ __strftime (CHAR *s, size_t maxsize, const CHAR *format,
unsigned long width;
int tzset_called = 0;
- const struct lc_time_T *_CurrentTimeLocale = __get_locale_time (locale);
+ const struct lc_time_T *_CurrentTimeLocale = __get_time_locale (locale);
for (;;)
{
while (*format && *format != CQ('%'))