We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 017065e commit 7a941f4Copy full SHA for 7a941f4
pandas/io/sas/sas.pyx
@@ -28,7 +28,7 @@ cdef const uint8_t[:] rle_decompress(int result_length, const uint8_t[:] inbuff)
28
ipos += 1
29
30
if control_byte == 0x00:
31
- nbytes = <int>inbuff[ipos] + 64 + end_of_first_byte * 256
+ nbytes = <int>(inbuff[ipos]) + 64 + end_of_first_byte * 256
32
33
for _ in range(nbytes):
34
result[rpos] = inbuff[ipos]
0 commit comments