diff options
author | Denys Vlasenko | 2021-04-27 00:40:40 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-04-27 00:40:40 +0200 |
commit | e52e43c72f9dce8bc524a8e6770e6abe3e97db09 (patch) | |
tree | 887b16d00c444ec4951f50ad91541ebebcdff95f /networking/tls_pstm.c | |
parent | d728a30c211c2df6adccd64c6e2fc23387b341f2 (diff) | |
download | busybox-e52e43c72f9dce8bc524a8e6770e6abe3e97db09.zip busybox-e52e43c72f9dce8bc524a8e6770e6abe3e97db09.tar.gz |
tls: whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tls_pstm.c')
-rw-r--r-- | networking/tls_pstm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/tls_pstm.c b/networking/tls_pstm.c index e5544ab..9992903 100644 --- a/networking/tls_pstm.c +++ b/networking/tls_pstm.c @@ -438,9 +438,9 @@ int32 FAST_FUNC pstm_read_unsigned_bin(pstm_int *a, unsigned char *b, int32 c) int32 idx = (c - 1) & ~3; switch (c % 4) { case 0: do { pd[idx+0] = *b++; - case 3: pd[idx+1] = *b++; - case 2: pd[idx+2] = *b++; - case 1: pd[idx+3] = *b++; + case 3: pd[idx+1] = *b++; + case 2: pd[idx+2] = *b++; + case 1: pd[idx+3] = *b++; idx -= 4; } while ((c -= 4) > 0); } @@ -1427,7 +1427,7 @@ static int32 pstm_div(psPool_t *pool, pstm_int *a, pstm_int *b, pstm_int *c, } /* while (q{i-t-1} * (yt * b + y{t-1})) > - xi * b**2 + xi-1 * b + xi-2 + xi * b**2 + xi-1 * b + xi-2 do q{i-t-1} -= 1; */ |