aboutsummaryrefslogtreecommitdiff
path: root/umount.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-12-07 08:37:31 +0000
committerEric Andersen <andersen@codepoet.org>1999-12-07 08:37:31 +0000
commitd00c2628474b9e6a3fe34c988fe197cf2425ff1a (patch)
tree960ee0d6353cfae1ff21820f8a2d95f6c2ed08c9 /umount.c
parent0ecb54a0f3fece5e42f089036f059973bed8d87e (diff)
downloadbusybox-d00c2628474b9e6a3fe34c988fe197cf2425ff1a.tar.gz
Stuf
Diffstat (limited to 'umount.c')
-rw-r--r--umount.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/umount.c b/umount.c
index 3bd86814e..522498be7 100644
--- a/umount.c
+++ b/umount.c
@@ -107,6 +107,12 @@ umount_all(int useMtab)
extern int
umount_main(int argc, char** argv)
{
+ int i=0;
+ char **foo=argv;
+ while(*foo) {
+ fprintf(stderr, "argv[%d]='%s'\n", i++, *foo);
+ foo++;
+ }
if (argc < 2) {
usage( umount_usage);