Skip to content

Commit e7e3b37

Browse files
committed
Fix mixed tab/spaces indentation [skip ci]
1 parent 3670fb8 commit e7e3b37

File tree

1 file changed

+2
-2
lines changed
  • system/lib/libc/musl/src/time

1 file changed

+2
-2
lines changed

system/lib/libc/musl/src/time/__tz.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ static void do_tzset()
142142

143143
s = getenv("TZ");
144144
#ifdef __EMSCRIPTEN__ // XXX Emscripten ignore default timezone from filesystem
145-
if (!s || !*s) s = __utc;
145+
if (!s || !*s) s = __utc;
146146
#else
147147
if (!s) s = "/etc/localtime";
148148
if (!*s) s = __utc;
@@ -444,7 +444,7 @@ const char *__tm_to_tzname(const struct tm *tm)
444444
LOCK(lock);
445445
do_tzset();
446446
#ifdef __EMSCRIPTEN__ // XXX Emscripten ignore default timezone from filesystem
447-
if (p != __utc && p != __tzname[0] && p != __tzname[1])
447+
if (p != __utc && p != __tzname[0] && p != __tzname[1])
448448
#else
449449
if (p != __utc && p != __tzname[0] && p != __tzname[1] &&
450450
(!zi || (uintptr_t)p-(uintptr_t)abbrevs >= abbrevs_end - abbrevs))

0 commit comments

Comments
 (0)