Fix formatting in concat_os_str
This commit is contained in:
parent
56376569ae
commit
d25fdd0a32
1 changed files with 2 additions and 2 deletions
|
|
@ -6,8 +6,8 @@ use std::fmt::Display;
|
|||
macro_rules! concat_os_str {(
|
||||
$base: expr, $($suffix: expr),+
|
||||
) => {{
|
||||
let mut base = std :: ffi :: OsString :: from ( $ base ) ;
|
||||
$ ( base . push ( $ suffix ) ; ) +
|
||||
let mut base = std::ffi::OsString::from($base);
|
||||
$(base.push($suffix);)+
|
||||
base
|
||||
}}}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue