diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2022-08-30 16:41:17 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2022-08-30 16:41:17 +0200 |
commit | fe73c8d55795a8fe7e95fc2c00af6899817b96b8 (patch) | |
tree | 1b772243f00c63d16ee4cf8bf6f80a6c7a53ee91 /coreutils/cut.c | |
parent | 58598eb7093561d914a6254697e137b815f1fdfc (diff) | |
download | busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.tar.gz busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.tar.bz2 busybox-w32-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.zip |
*: style fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/cut.c')
-rw-r--r-- | coreutils/cut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c index 7009e74cf..55bdd9386 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c | |||
@@ -167,7 +167,7 @@ static void cut_file(FILE *file, const char *delim, const char *odelim, | |||
167 | if (!cl_pos && !dcount && !shoe) { | 167 | if (!cl_pos && !dcount && !shoe) { |
168 | if (option_mask32 & CUT_OPT_SUPPRESS_FLGS) | 168 | if (option_mask32 & CUT_OPT_SUPPRESS_FLGS) |
169 | goto next_line; | 169 | goto next_line; |
170 | } else if (dcount<cut_lists[cl_pos].startpos) | 170 | } else if (dcount < cut_lists[cl_pos].startpos) |
171 | start = linelen; | 171 | start = linelen; |
172 | end = linelen; | 172 | end = linelen; |
173 | } else { | 173 | } else { |