diff options
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 960c161b0..ae28f6420 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -291,7 +291,7 @@ static void dfree(struct dnode **dnp, int nfiles) | |||
291 | free(dnp); /* free the array holding the dnode pointers */ | 291 | free(dnp); /* free the array holding the dnode pointers */ |
292 | } | 292 | } |
293 | #else | 293 | #else |
294 | #define dfree(...) do {} while(0) | 294 | #define dfree(...) do {} while (0) |
295 | #endif | 295 | #endif |
296 | 296 | ||
297 | static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which) | 297 | static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which) |
@@ -375,7 +375,7 @@ static void dnsort(struct dnode **dn, int size) | |||
375 | qsort(dn, size, sizeof(*dn), sortcmp); | 375 | qsort(dn, size, sizeof(*dn), sortcmp); |
376 | } | 376 | } |
377 | #else | 377 | #else |
378 | #define dnsort(dn, size) do {} while(0) | 378 | #define dnsort(dn, size) do {} while (0) |
379 | #endif | 379 | #endif |
380 | 380 | ||
381 | 381 | ||