Skip to content

Commit 5ca3f96

Browse files
committed
Macro cleanups
1 parent fe79e95 commit 5ca3f96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/macros.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ macro_rules! log_debug {
2222
}
2323

2424
#[macro_export]
25-
macro_rules! redis_module (
26-
($module_name:expr, $module_version:expr, $data_types:expr, $commands:expr) => (
25+
macro_rules! redis_module {
26+
($module_name:expr, $module_version:expr, $data_types:expr, $commands:expr) => {
2727
use std::os::raw::c_int;
2828
use std::ffi::CString;
2929

@@ -76,5 +76,5 @@ macro_rules! redis_module (
7676
raw::Status::Ok as _
7777
}
7878
}
79-
)
80-
);
79+
}
80+
}

0 commit comments

Comments
 (0)