Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-27 23:51:06 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-27 23:51:06 +0400
commitc16bd212e341598452b7885d9e4ac2064f417673 (patch)
tree843350d8cd414849eadca5b65ef8f497834895d2 /archival/unzip.c
parent94d5d82bd84ec65d52c3df92276221d48990f306 (diff)
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)
struct stat stat_buf;
while((opt = getopt(argc, argv, "-d:lnopqx")) != -1) {
- switch(opt_range) {
+ switch (opt_range) {
case 0: /* Options */
- switch(opt) {
+ switch (opt) {
case 'l': /* List */
verbosity = v_list;
break;