silly switch style fix

This commit is contained in:
Denis Vlasenko
2006-09-27 19:51:06 +00:00
parent 94d5d82bd8
commit c16bd212e3
8 changed files with 10 additions and 10 deletions

View File

@@ -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;