Skip to content

Commit

Permalink
remove trailing semicolon from macro definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik1000 committed Mar 25, 2022
1 parent 53676d6 commit 0d38b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/rp_common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub fn set_test_id(test_id: &'static str) {
#[macro_export]
macro_rules! log_error {
($($args:tt)+) => {
error!("[{}] {}", rp_common::get_test_id(), format!($($args)+));
error!("[{}] {}", rp_common::get_test_id(), format!($($args)+))
}
}
#[macro_export]
Expand Down

0 comments on commit 0d38b9a

Please sign in to comment.