Skip to content

Commit 2096a42

Browse files
committed
Explicitly declare return type of findTotalContentSize
1 parent 7835f41 commit 2096a42

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
@@ -359,7 +359,7 @@ cdef stream_decompress(const Py_buffer* source_pb):
359359

360360
return dest
361361

362-
cdef findTotalContentSize(const char* source_ptr, size_t source_size):
362+
cdef unsigned long long findTotalContentSize(const char* source_ptr, size_t source_size):
363363
cdef:
364364
unsigned long long frame_content_size = 0
365365
unsigned long long total_content_size = 0

0 commit comments

Comments
 (0)