mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-12 15:20:20 +00:00
Merge pull request #6367 from braewoods/warnings
[1.2-maint] src/borg/compress.pyx: fix compiler warning, closes #6365
This commit is contained in:
commit
d88d1674b7
1 changed files with 1 additions and 1 deletions
|
@ -286,7 +286,7 @@ class ZSTD(DecidingCompressor):
|
||||||
if not isinstance(idata, bytes):
|
if not isinstance(idata, bytes):
|
||||||
idata = bytes(idata) # code below does not work with memoryview
|
idata = bytes(idata) # code below does not work with memoryview
|
||||||
cdef int isize = len(idata)
|
cdef int isize = len(idata)
|
||||||
cdef size_t osize
|
cdef int osize
|
||||||
cdef char *source = idata
|
cdef char *source = idata
|
||||||
cdef char *dest
|
cdef char *dest
|
||||||
cdef int level = self.level
|
cdef int level = self.level
|
||||||
|
|
Loading…
Add table
Reference in a new issue