Skip to content

Commit 6cff161

Browse files
committed
Explicitly declare return type of findTotalContentSize
1 parent 13ccf44 commit 6cff161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numcodecs/zstd.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def decompress(source, dest=None):
232232
return dest
233233

234234

235-
cdef findTotalContentSize(const char* source_ptr, size_t source_size):
235+
cdef unsigned long long findTotalContentSize(const char* source_ptr, size_t source_size):
236236
cdef:
237237
unsigned long long frame_content_size = 0
238238
unsigned long long total_content_size = 0

0 commit comments

Comments
 (0)