diff options
author | Tim Riker | 2006-01-25 00:08:53 +0000 |
---|---|---|
committer | Tim Riker | 2006-01-25 00:08:53 +0000 |
commit | c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4 (patch) | |
tree | 5f329b7d0c7f20ecced0dc7581a9ba6dc720d965 /miscutils/strings.c | |
parent | f64ff682a3d58dbb627e760e6fe1ec21d9ccdf61 (diff) | |
download | busybox-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.zip busybox-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.tar.gz |
just whitespace
Diffstat (limited to 'miscutils/strings.c')
-rw-r--r-- | miscutils/strings.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/miscutils/strings.c b/miscutils/strings.c index 111aa94..df7ff09 100644 --- a/miscutils/strings.c +++ b/miscutils/strings.c @@ -47,23 +47,23 @@ int strings_main(int argc, char **argv) char *string; const char *fmt = "%s: "; char *n_arg = "4"; - + opt = bb_getopt_ulflags (argc, argv, "afon:", &n_arg); /* -a is our default behaviour */ - + argc -= optind; argv += optind; n = bb_xgetlarg(n_arg, 10, 1, INT_MAX); string = xcalloc(n + 1, 1); n--; - + if ( argc == 0) { fmt = "{%s}: "; *argv = (char *)bb_msg_standard_input; goto PIPE; } - + do { if ((file = bb_wfopen(*argv, "r"))) { PIPE: |