aboutsummaryrefslogtreecommitdiff
path: root/archival/bunzip2.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-09-11 01:05:30 +0000
committerRob Landley <rob@landley.net>2005-09-11 01:05:30 +0000
commitb7128c6236ac9b4d5d69ad95d509498f38df0dd6 (patch)
tree0358a910b954c6c7fdcaddf389693a0c2e96ef70 /archival/bunzip2.c
parentdb289b258de53bdcea7d671f854aafbb490321df (diff)
downloadbusybox-b7128c6236ac9b4d5d69ad95d509498f38df0dd6.tar.gz
Cleanup patch by Bernhard Fischer, removing unnecessary includes of
getopt.h, whitespace changes, typos, etc.
Diffstat (limited to 'archival/bunzip2.c')
-rw-r--r--archival/bunzip2.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/archival/bunzip2.c b/archival/bunzip2.c
index 740e26919..2ce6cfb86 100644
--- a/archival/bunzip2.c
+++ b/archival/bunzip2.c
@@ -6,7 +6,6 @@
*/
#include <fcntl.h>
-#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -35,7 +34,7 @@ int bunzip2_main(int argc, char **argv)
src_fd = STDIN_FILENO;
filename = 0;
}
-
+
/* if called as bzcat force the stdout flag */
if ((opt & BUNZIP2_OPT_STDOUT) || bb_applet_name[2] == 'c')
filename = 0;