diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-03-24 15:00:12 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-03-24 15:00:12 +0100 |
commit | 876c121ccb479d667a1ab00d0cb2d9cb1c298e7d (patch) | |
tree | b2e05719f88528c5e7fd01f9d57fbf07abcedf39 | |
parent | f4a670a9110426e9153e7d5f6e7b7d1f1eac6195 (diff) | |
download | busybox-876c121ccb479d667a1ab00d0cb2d9cb1c298e7d.tar.gz |
whitespace fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/unzip.c | 2 | ||||
-rw-r--r-- | coreutils/paste.c | 2 | ||||
-rw-r--r-- | networking/tls_pstm.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/archival/unzip.c b/archival/unzip.c index 028e4e62e..51025529d 100644 --- a/archival/unzip.c +++ b/archival/unzip.c @@ -239,7 +239,7 @@ static uint32_t find_cdf_offset(void) end = 0; dbg("Looking for cdf_offset starting from 0x%"OFF_FMT"x", end); - xlseek(zip_fd, end, SEEK_SET); + xlseek(zip_fd, end, SEEK_SET); buf = xzalloc(PEEK_FROM_END); full_read(zip_fd, buf, PEEK_FROM_END); diff --git a/coreutils/paste.c b/coreutils/paste.c index d929d6aa0..3920859d6 100644 --- a/coreutils/paste.c +++ b/coreutils/paste.c @@ -127,7 +127,7 @@ int paste_main(int argc UNUSED_PARAM, char **argv) (--argv)[0] = (char*) "-"; for (i = 0; argv[i]; ++i) { argv[i] = (void*) fopen_or_warn_stdin(argv[i]); - if (!argv[i]) + if (!argv[i]) xfunc_die(); } diff --git a/networking/tls_pstm.c b/networking/tls_pstm.c index acd800307..c39a2182d 100644 --- a/networking/tls_pstm.c +++ b/networking/tls_pstm.c @@ -1624,7 +1624,7 @@ int32 pstm_exptmod(psPool_t *pool, pstm_int *G, pstm_int *X, pstm_int *P, paDlen = ((M[1].used + 3) * 2) * sizeof(pstm_digit); paD = xzalloc(paDlen);//bbox /* - compute the value at M[1<<(winsize-1)] by squaring M[1] (winsize-1) times + compute the value at M[1<<(winsize-1)] by squaring M[1] (winsize-1) times */ if (pstm_init_copy(pool, &M[1 << (winsize - 1)], &M[1], 1) != PSTM_OKAY) { err = PS_MEM_FAIL; |