whitespace fixes. no code changes
[oweals/busybox.git] / coreutils / ls.c
index 83ad8cd00de85ff719d974a52f57d0fd2a57abe7..7fddefef5974b0f3e6957b17a1637b2b2890d95b 100644 (file)
@@ -169,12 +169,12 @@ enum {
 #endif
 #define current_time_t (G.current_time_t)
 /* memset: we have to zero it out because of NOEXEC */
-#define INIT_G() { \
+#define INIT_G() do { \
        memset(&G, 0, sizeof(G)); \
        USE_FEATURE_AUTOWIDTH(tabstops = COLUMN_GAP;) \
        USE_FEATURE_AUTOWIDTH(terminal_width = TERMINAL_WIDTH;) \
        USE_FEATURE_LS_TIMESTAMPS(time(&current_time_t);) \
-}
+} while (0)
 
 
 #if ENABLE_FEATURE_ASSUME_UNICODE