Skip to content

Commit 4cb096b

Browse files
committed
Fix: No return
1 parent 343b858 commit 4cb096b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/stringzilla/hash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2365,7 +2365,7 @@ SZ_PUBLIC sz_u64_t sz_hash_sve2(sz_cptr_t text, sz_size_t length, sz_u64_t seed)
23652365
}
23662366

23672367
SZ_PUBLIC void sz_fill_random_sve2(sz_ptr_t text, sz_size_t length, sz_u64_t nonce) {
2368-
return sz_fill_random_neon(text, length, nonce);
2368+
sz_fill_random_neon(text, length, nonce);
23692369
}
23702370

23712371
#if 0

0 commit comments

Comments
 (0)