diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-28 18:57:19 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-28 18:57:19 +0200 |
commit | e4dcba1c103dc28e927e004791e331aaf604383d (patch) | |
tree | a18094ecc54fcea2cb523a802e0c414c3e6f85bf /libbb/wfopen_input.c | |
parent | 776509544123c68bbc128c0fdb2f699062d294cf (diff) | |
download | busybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.tar.gz busybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.tar.bz2 busybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.zip |
*: whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/wfopen_input.c')
-rw-r--r-- | libbb/wfopen_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/wfopen_input.c b/libbb/wfopen_input.c index 422a58ecf..d8b1c4a36 100644 --- a/libbb/wfopen_input.c +++ b/libbb/wfopen_input.c | |||
@@ -31,7 +31,7 @@ FILE* FAST_FUNC xfopen_stdin(const char *filename) | |||
31 | FILE *fp = fopen_or_warn_stdin(filename); | 31 | FILE *fp = fopen_or_warn_stdin(filename); |
32 | if (fp) | 32 | if (fp) |
33 | return fp; | 33 | return fp; |
34 | xfunc_die(); /* We already output an error message. */ | 34 | xfunc_die(); /* We already output an error message. */ |
35 | } | 35 | } |
36 | 36 | ||
37 | int FAST_FUNC open_or_warn_stdin(const char *filename) | 37 | int FAST_FUNC open_or_warn_stdin(const char *filename) |
@@ -52,5 +52,5 @@ int FAST_FUNC xopen_stdin(const char *filename) | |||
52 | int fd = open_or_warn_stdin(filename); | 52 | int fd = open_or_warn_stdin(filename); |
53 | if (fd >= 0) | 53 | if (fd >= 0) |
54 | return fd; | 54 | return fd; |
55 | xfunc_die(); /* We already output an error message. */ | 55 | xfunc_die(); /* We already output an error message. */ |
56 | } | 56 | } |