aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/cut.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2018-08-31 15:02:21 -0500
committerRob Landley <rob@landley.net>2018-08-31 15:14:12 -0500
commit8993496e496cdbc80643b69d049d05bbd7f596b3 (patch)
tree8790f2ada6dfdc0e98265672cac9b8ae07bfce56 /toys/posix/cut.c
parent198b2b48345c175dc184258677fd48043dc1a78b (diff)
downloadtoybox-8993496e496cdbc80643b69d049d05bbd7f596b3.tar.gz
Convert option style.
Diffstat (limited to 'toys/posix/cut.c')
-rw-r--r--toys/posix/cut.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/toys/posix/cut.c b/toys/posix/cut.c
index 83582aaa..0b12ab14 100644
--- a/toys/posix/cut.c
+++ b/toys/posix/cut.c
@@ -39,8 +39,7 @@ config CUT
#include "toys.h"
GLOBALS(
- char *d;
- char *O;
+ char *d, *O;
struct arg_list *select[5]; // we treat them the same, so loop through
int pairs;