diff options
author | Denis Vlasenko | 2009-03-27 17:22:00 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-03-27 17:22:00 +0000 |
commit | 4d3a812b71d1933860b268dbea15ffcea396e394 (patch) | |
tree | f995e85877501dd84f4fbb52c7e23dbea3bcf2cd /coreutils/ls.c | |
parent | 3603cd2808b3025460f2ad920d4622ed17194a32 (diff) | |
download | busybox-4d3a812b71d1933860b268dbea15ffcea396e394.zip busybox-4d3a812b71d1933860b268dbea15ffcea396e394.tar.gz |
ls: warning fix
rm: accept and ignore -v (verbose)
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 85c6729..61baa9a 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -742,7 +742,7 @@ static int print_name(const char *name) static int list_single(const struct dnode *dn) { int column = 0; - char *lpath; + char *lpath = lpath; /* for compiler */ #if ENABLE_FEATURE_LS_TIMESTAMPS char *filetime; time_t ttime, age; |