whitespace fix
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 24 Mar 2017 14:00:12 +0000 (15:00 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 24 Mar 2017 14:00:12 +0000 (15:00 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
archival/unzip.c
coreutils/paste.c
networking/tls_pstm.c

index 028e4e62ed6bd420e86556663ae1144551de010b..51025529dcaa2ec51beed88e317a768051074f21 100644 (file)
@@ -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);
 
index d929d6aa0c6207e5e65d76363a5212acb9bb4706..3920859d6cfba439f57c4fa51b93f21415fbfb70 100644 (file)
@@ -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();
        }
 
index acd80030766469b18fc481b061bbb4f4c9562ec9..c39a2182db02551885ac2c5d0a9537def50e839f 100644 (file)
@@ -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;