mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix indentation in switch-statement in utils/tail.c.
Sortix coding style does not indent the cases of a switch statement.
This commit is contained in:
parent
db5b51d673
commit
cb4a631524
1 changed files with 10 additions and 10 deletions
20
utils/tail.c
20
utils/tail.c
|
@ -370,16 +370,16 @@ int main(int argc, char* argv[])
|
|||
break;
|
||||
switch ( opt )
|
||||
{
|
||||
case 'c':
|
||||
case 'n':
|
||||
byte_mode = opt == 'c';
|
||||
parse_number(optarg);
|
||||
break;
|
||||
case 'f': follow = true; path_mode = false; break;
|
||||
case 'F': follow = true; path_mode = true; break;
|
||||
case 'q': quiet = true; verbose = false; break;
|
||||
case 'v': verbose = true; quiet = false; break;
|
||||
default: return 1;
|
||||
case 'c':
|
||||
case 'n':
|
||||
byte_mode = opt == 'c';
|
||||
parse_number(optarg);
|
||||
break;
|
||||
case 'f': follow = true; path_mode = false; break;
|
||||
case 'F': follow = true; path_mode = true; break;
|
||||
case 'q': quiet = true; verbose = false; break;
|
||||
case 'v': verbose = true; quiet = false; break;
|
||||
default: return 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue