untabify: replace tab to space
authorWaLyong Cho <walyong.cho@samsung.com>
Tue, 13 Dec 2016 04:44:20 +0000 (13:44 +0900)
committerWaLyong Cho <walyong.cho@samsung.com>
Tue, 13 Dec 2016 10:57:35 +0000 (19:57 +0900)
Change-Id: I683d4414c2aad001ec513bfa3f226e7373ed8723
Signed-off-by: WaLyong Cho <walyong.cho@samsung.com>
src/libsystem/libsystem.c

index f8cfdc4..fb4a222 100644 (file)
 
 static int _errno_old;
 
-#define STORE_RESET_ERRNO      do {    \
+#define STORE_RESET_ERRNO do {          \
         _errno_old = errno;             \
         errno = 0;                      \
 } while (0)
 
-#define RESTORE_ERRNO          do {    \
+#define RESTORE_ERRNO do {              \
         errno = _errno_old;             \
         _errno_old = 0;                 \
 } while (0)