Fix a (future) syntax error in the net_log macro.

This commit is contained in:
whitequark 2017-10-15 10:10:08 +00:00
parent 19b1b764ed
commit af69c6de82
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ mod log {
}
macro_rules! net_log {
($level:ident, $($arg:expr),*) => { $( let _ = $arg );* }
($level:ident, $($arg:expr),*) => { $( let _ = $arg; )* }
}
}