diff --git a/xpra/buffers/xxh.pyx b/xpra/buffers/xxh.pyx index cc63d093c1..73e51c4e9d 100644 --- a/xpra/buffers/xxh.pyx +++ b/xpra/buffers/xxh.pyx @@ -13,5 +13,5 @@ cdef extern from "xxhash.h": ctypedef uint64_t XXH64_hash_t XXH64_hash_t XXH3_64bits(const void* data, size_t len) nogil -cdef uint64_t xxh3(const void* input, size_t length) nogil: +cdef uint64_t xxh3(const void* input, size_t length) nogil noexcept: return XXH3_64bits(input, length)