Skip to content

Commit

Permalink
Merge pull request #399 from RedisLabsModules/small-fix
Browse files Browse the repository at this point in the history
Fix the name use within the macro
  • Loading branch information
iddm authored Nov 21, 2024
2 parents 9c012ce + e3d71b2 commit 6472bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ macro_rules! redis_command {
$mandatory_acl_categories:expr
$(, $optional_acl_categories:expr)?
) => {{
use redis_module::AclCategory;
use $crate::AclCategory;

let name = CString::new($command_name).unwrap();
let flags = CString::new($command_flags).unwrap();
Expand Down

0 comments on commit 6472bc4

Please sign in to comment.