Skip to content

Commit 58be14b

Browse files
committed
fix: remove trailing whitespace
1 parent a27e751 commit 58be14b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/tests.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2245,7 +2245,7 @@ static void test_scalar_check_overflow(void) {
22452245
/* Random inputs */
22462246
for (i = 0; i < 256; i++) {
22472247
int expected_overflow;
2248-
2248+
22492249
/* Generate random 32 bytes using a simple Linear Congruential Generator */
22502250
for (j = 0; j < 32; j++) {
22512251
seed = seed * 1664525 + 1013904223;
@@ -2254,7 +2254,7 @@ static void test_scalar_check_overflow(void) {
22542254

22552255
/* Force top bits to be 0xFF sometimes to ensure we hit overflows */
22562256
if (i % 2 == 0) {
2257-
memset(b32, 0xFF, 16);
2257+
memset(b32, 0xFF, 16);
22582258
}
22592259

22602260
/* Check if b32 >= N */
@@ -2264,6 +2264,7 @@ static void test_scalar_check_overflow(void) {
22642264
CHECK(overflow == expected_overflow);
22652265
}
22662266
}
2267+
22672268
static void run_scalar_tests(void) {
22682269
int i;
22692270
test_scalar_check_overflow();

0 commit comments

Comments
 (0)