Fix formatting in concat_os_str

This commit is contained in:
Reinout Meliesie 2026-01-21 13:11:20 +01:00
commit d25fdd0a32
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6

View file

@ -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
}}}