We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ab1c2 commit e9d3230Copy full SHA for e9d3230
Modules/_ssl.c
@@ -546,12 +546,12 @@ ssl_error_lineno_width(int lineno)
546
if (lineno < 0) {
547
return 1 + ssl_error_lineno_width(-lineno);
548
}
549
-#define FAST_PATH(E, N) \
550
- do { \
551
- assert((size_t)(1e ## E) == N); \
552
- if (lineno < (N)) { \
553
- return (E); \
554
- } \
+#define FAST_PATH(E, N) \
+ do { \
+ assert((size_t)(1e ## E) == 10 * N); \
+ if (lineno < (N)) { \
+ return (E); \
+ } \
555
} while (0)
556
FAST_PATH(2, 10);
557
FAST_PATH(3, 100);
0 commit comments