Skip to content

Commit aa0a371

Browse files
committed
fix compile error
1 parent 2baa37c commit aa0a371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ fn verify_type(key_inner: *mut raw::RedisModuleKey, redis_type: &RedisType) -> R
237237

238238
if key_type != KeyType::Empty {
239239
// The key exists; check its type
240-
let raw_type = unsafe { raw::לRedisModule_ModuleTypeGetType.unwrap()(key_inner) };
240+
let raw_type = unsafe { raw::RedisModule_ModuleTypeGetType.unwrap()(key_inner) };
241241

242242
if raw_type != *redis_type.raw_type.borrow() {
243243
return Err(RedisError::String(format!(

0 commit comments

Comments
 (0)