Skip to content

Commit 041a04b

Browse files
authored
ssize_t -> size_t
1 parent eca0db4 commit 041a04b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/sas/sas.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ cdef int rle_decompress(Buffer inbuff, Buffer outbuff) except? 0:
5959
uint8_t control_byte, x
6060
int rpos = 0
6161
int i, nbytes, end_of_first_byte, value
62-
Py_ssize_t ipos = 0
62+
size_t ipos = 0
6363

6464
while ipos < inbuff.length:
6565
control_byte = buf_get(inbuff, ipos) & 0xF0
@@ -157,7 +157,7 @@ cdef int rdc_decompress(Buffer inbuff, Buffer outbuff) except? 0:
157157
uint8_t cmd
158158
uint16_t ctrl_bits = 0, ctrl_mask = 0, ofs, cnt
159159
int rpos = 0, k, ii
160-
Py_ssize_t ipos = 0
160+
size_t ipos = 0
161161

162162
ii = -1
163163

0 commit comments

Comments
 (0)