1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-18 09:46:33 +02:00

(parse_options): Remove unnecessary goto and label.

This commit is contained in:
Jim Meyering
1997-01-26 04:48:29 +00:00
parent 6390686aab
commit 73ed11f2b7

View File

@@ -1002,12 +1002,8 @@ parse_options (int argc, char **argv,
break;
case 'c':
count_lines = 0;
goto getnum;
case 'n':
count_lines = 1;
getnum:
count_lines = (c == 'n');
if (*optarg == '+')
from_start = 1;
else if (*optarg == '-')