mirror of
https://github.com/borgbackup/borg.git
synced 2026-03-24 19:34:23 -04:00
fix "useless trailing comma" cython warnings
This commit is contained in:
parent
7a1d12d007
commit
cd629d32cb
1 changed files with 8 additions and 8 deletions
|
|
@ -25,16 +25,16 @@ cdef extern from "xxhash-libselect.h":
|
|||
XXH_OK,
|
||||
XXH_ERROR
|
||||
|
||||
XXH64_state_t* XXH64_createState();
|
||||
XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
|
||||
XXH64_hash_t XXH64(const void* input, size_t length, unsigned long long seed);
|
||||
XXH64_state_t* XXH64_createState()
|
||||
XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr)
|
||||
XXH64_hash_t XXH64(const void* input, size_t length, unsigned long long seed)
|
||||
|
||||
XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed);
|
||||
XXH_errorcode XXH64_update(XXH64_state_t* statePtr, const void* input, size_t length);
|
||||
XXH64_hash_t XXH64_digest(const XXH64_state_t* statePtr);
|
||||
XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed)
|
||||
XXH_errorcode XXH64_update(XXH64_state_t* statePtr, const void* input, size_t length)
|
||||
XXH64_hash_t XXH64_digest(const XXH64_state_t* statePtr)
|
||||
|
||||
void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash);
|
||||
XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src);
|
||||
void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash)
|
||||
XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src)
|
||||
|
||||
|
||||
cdef Py_buffer ro_buffer(object data) except *:
|
||||
|
|
|
|||
Loading…
Reference in a new issue