Skip to content

Commit b3a1a8f

Browse files
committed
Fix incompatible types
1 parent 53a4e24 commit b3a1a8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/longobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4518,7 +4518,7 @@ long_rshift1(PyLongObject *a, Py_ssize_t wordshift, digit remshift)
45184518
--wordshift;
45194519
if (wordshift < 0) {
45204520
/* Can only happen if the original shift was 0. */
4521-
return long_long(a);
4521+
return long_long((PyObject *)a);
45224522
}
45234523
}
45244524
}

0 commit comments

Comments
 (0)