Skip to content

Commit bbb54fe

Browse files
committedOct 15, 2017
Fix a (future) syntax error in the net_log macro.
1 parent 096ce02 commit bbb54fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mod log {
2020
}
2121

2222
macro_rules! net_log {
23-
($level:ident, $($arg:expr),*) => { $( let _ = $arg );* }
23+
($level:ident, $($arg:expr),*) => { $( let _ = $arg; )* }
2424
}
2525
}
2626

0 commit comments

Comments
 (0)