aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-28 01:19:06 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-28 01:19:06 +0000
commitbd44397ca943560e73440b2bf4364b0f889e4e8a (patch)
tree44562726c7e7ca0c936f6e77a5f29e31d3dec33a /coreutils
parent312b3a6904f4c7dfc72c81b0d728839c6901a874 (diff)
downloadbusybox-w32-bd44397ca943560e73440b2bf4364b0f889e4e8a.tar.gz
busybox-w32-bd44397ca943560e73440b2bf4364b0f889e4e8a.tar.bz2
busybox-w32-bd44397ca943560e73440b2bf4364b0f889e4e8a.zip
Fix some warnings in allbareconfig.
git-svn-id: svn://busybox.net/trunk/busybox@15206 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/ls.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c
index 882eab8e7..3fe0c8dad 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -353,6 +353,8 @@ static void dfree(struct dnode **dnp, int nfiles)
353 } 353 }
354 free(dnp); /* free the array holding the dnode pointers */ 354 free(dnp); /* free the array holding the dnode pointers */
355} 355}
356#else
357#define dfree(...)
356#endif 358#endif
357 359
358static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which) 360static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)