소스 검색

2 spaces -> 4 spaces

Meco Man 4 년 전
부모
커밋
e3fee1ca77
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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)