tls: fix whitespace in P256 code

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2021-04-26 20:24:34 +02:00
parent 93b886f54b
commit 120401249a

View File

@ -100,7 +100,7 @@ static void sp_256_to_bin(sp_digit* r, uint8_t* a)
}
j = 256 / 8 - 1;
a[j] = 0;
for (i=0; i<10 && j>=0; i++) {
for (i = 0; i < 10 && j >= 0; i++) {
b = 0;
a[j--] |= r[i] << s; b += 8 - s;
if (j < 0)