aboutsummaryrefslogtreecommitdiff
path: root/archival/unzip.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-27 19:51:06 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-27 19:51:06 +0000
commitc16bd212e341598452b7885d9e4ac2064f417673 (patch)
tree843350d8cd414849eadca5b65ef8f497834895d2 /archival/unzip.c
parent94d5d82bd84ec65d52c3df92276221d48990f306 (diff)
downloadbusybox-w32-c16bd212e341598452b7885d9e4ac2064f417673.tar.gz
busybox-w32-c16bd212e341598452b7885d9e4ac2064f417673.tar.bz2
busybox-w32-c16bd212e341598452b7885d9e4ac2064f417673.zip
silly switch style fix
Diffstat (limited to 'archival/unzip.c')
-rw-r--r--archival/unzip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/unzip.c b/archival/unzip.c
index 1b80aea9f..f63925739 100644
--- a/archival/unzip.c
+++ b/archival/unzip.c
@@ -115,9 +115,9 @@ int unzip_main(int argc, char **argv)
115 struct stat stat_buf; 115 struct stat stat_buf;
116 116
117 while((opt = getopt(argc, argv, "-d:lnopqx")) != -1) { 117 while((opt = getopt(argc, argv, "-d:lnopqx")) != -1) {
118 switch(opt_range) { 118 switch (opt_range) {
119 case 0: /* Options */ 119 case 0: /* Options */
120 switch(opt) { 120 switch (opt) {
121 case 'l': /* List */ 121 case 'l': /* List */
122 verbosity = v_list; 122 verbosity = v_list;
123 break; 123 break;