mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-27 18:28:42 +00:00
hashindex.pyx: fix signedness warning
This commit is contained in:
parent
cc7984f423
commit
d003046078
1 changed files with 2 additions and 2 deletions
|
@ -278,8 +278,8 @@ cdef class NSKeyIterator:
|
||||||
cdef const unsigned char *key
|
cdef const unsigned char *key
|
||||||
cdef int key_size
|
cdef int key_size
|
||||||
cdef int exhausted
|
cdef int exhausted
|
||||||
cdef int flag_mask
|
cdef unsigned int flag_mask
|
||||||
cdef int flag_value
|
cdef unsigned int flag_value
|
||||||
|
|
||||||
def __cinit__(self, key_size, mask, value):
|
def __cinit__(self, key_size, mask, value):
|
||||||
self.key = NULL
|
self.key = NULL
|
||||||
|
|
Loading…
Reference in a new issue