Skip to content

Commit 5d1149a

Browse files
committed
drop cast cause not used consistently elsewhere
Signed-off-by: Harmen Stoppels <harmenstoppels@gmail.com>
1 parent d62cc5b commit 5d1149a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_sre/sre_lib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1861,7 +1861,7 @@ SRE(search)(SRE_STATE* state, SRE_CODE* pattern)
18611861
state->must_advance = 0;
18621862
while (status == 0) {
18631863
/* skip to the next linebreak ... */
1864-
while (ptr < end && !SRE_IS_LINEBREAK((int) *ptr))
1864+
while (ptr < end && !SRE_IS_LINEBREAK(*ptr))
18651865
ptr++;
18661866
if (ptr >= end)
18671867
return 0;

0 commit comments

Comments
 (0)