Skip to content

Commit 6b38769

Browse files
committed
fix assertions
1 parent a0ab1c2 commit 6b38769

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Modules/_ssl.c

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -553,12 +553,13 @@ ssl_error_lineno_width(int lineno)
553553
return (E); \
554554
} \
555555
} while (0)
556-
FAST_PATH(2, 10);
557-
FAST_PATH(3, 100);
558-
FAST_PATH(4, 1000);
559-
FAST_PATH(5, 10000);
560-
FAST_PATH(6, 100000);
561-
FAST_PATH(7, 1000000);
556+
FAST_PATH(1, 10);
557+
FAST_PATH(2, 100);
558+
FAST_PATH(3, 1000);
559+
FAST_PATH(4, 10000);
560+
FAST_PATH(5, 100000);
561+
FAST_PATH(6, 1000000);
562+
FAST_PATH(7, 10000000);
562563
#undef FAST_PATH
563564
return (size_t)ceil(log10(lineno));
564565
}

0 commit comments

Comments
 (0)