aboutsummaryrefslogtreecommitdiff
path: root/util-linux/getopt.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-03-28 01:00:09 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-03-28 01:00:09 +0000
commit2570b2e5759e8ac32b0922d71056bd426caae9f1 (patch)
tree742bbe33b5ec8ede49147150a2402472172be74b /util-linux/getopt.c
parentcf26ab70c11416401cd53e6a6a5fb4d5c2583246 (diff)
downloadbusybox-w32-2570b2e5759e8ac32b0922d71056bd426caae9f1.tar.gz
busybox-w32-2570b2e5759e8ac32b0922d71056bd426caae9f1.tar.bz2
busybox-w32-2570b2e5759e8ac32b0922d71056bd426caae9f1.zip
whitespace fixes
Diffstat (limited to 'util-linux/getopt.c')
-rw-r--r--util-linux/getopt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util-linux/getopt.c b/util-linux/getopt.c
index 6ec5cb0cd..2da348176 100644
--- a/util-linux/getopt.c
+++ b/util-linux/getopt.c
@@ -158,10 +158,10 @@ static int generate_output(char **argv, int argc, const char *optstr, const stru
158 158
159 /* Reset getopt(3) (see libbb/getopt32.c for long rant) */ 159 /* Reset getopt(3) (see libbb/getopt32.c for long rant) */
160#ifdef __GLIBC__ 160#ifdef __GLIBC__
161 optind = 0; 161 optind = 0;
162#else /* BSD style */ 162#else /* BSD style */
163 optind = 1; 163 optind = 1;
164 /* optreset = 1; */ 164 /* optreset = 1; */
165#endif 165#endif
166 166
167 while (1) { 167 while (1) {