Browse Source

2 spaces -> 4 spaces

Meco Man 4 năm trước cách đây
mục cha
commit
e3fee1ca77
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      components/libc/compilers/common/time.c

+ 2 - 2
components/libc/compilers/common/time.c

@@ -155,8 +155,8 @@ char* asctime(const struct tm *timeptr)
 
 char *ctime_r (const time_t * tim_p, char * result)
 {
-  struct tm tm;
-  return asctime_r (localtime_r (tim_p, &tm), result);
+    struct tm tm;
+    return asctime_r (localtime_r (tim_p, &tm), result);
 }
 
 char* ctime(const time_t *tim_p)