summaryrefslogtreecommitdiff
path: root/com32/lib/getopt.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2006-05-03 17:32:15 -0700
committerH. Peter Anvin <hpa@zytor.com>2006-05-03 17:32:15 -0700
commit28eecd8965aedbd75727fb0797a2e7033d5c54ee (patch)
tree1cac9ffc5f7fe7fd82d59b4accd7b8cf85762f74 /com32/lib/getopt.c
parentf8c463722022008c8412a69f90576d2bf38818ed (diff)
downloadsyslinux-28eecd8965aedbd75727fb0797a2e7033d5c54ee.tar.gz
Across-the-board stealth whitespace cleanup
Diffstat (limited to 'com32/lib/getopt.c')
-rw-r--r--com32/lib/getopt.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/com32/lib/getopt.c b/com32/lib/getopt.c
index 5a992dcd..49b007a6 100644
--- a/com32/lib/getopt.c
+++ b/com32/lib/getopt.c
@@ -23,7 +23,7 @@ int getopt(int argc, char * const *argv, const char *optstring)
(void)argc;
/* First, eliminate all non-option cases */
-
+
if ( !carg || carg[0] != '-' || !carg[1] ) {
return -1;
}
@@ -70,5 +70,3 @@ int getopt(int argc, char * const *argv, const char *optstring)
return '?';
}
}
-
-