Skip to content

Commit 3134354

Browse files
committed
windows: cleanup: Use more standard indentation for macro
1 parent 2ceb2f7 commit 3134354

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/platform/windows/mod.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ lazy_static! {
3535
}
3636

3737
/// Debug macro to better track what's going on in case of errors.
38-
macro_rules! win32_trace { ($($rest:tt)*) => {
39-
if cfg!(feature = "win32-trace") {
40-
if *DEBUG_TRACE_ENABLED { println!($($rest)*); }
38+
macro_rules! win32_trace {
39+
($($rest:tt)*) => {
40+
if cfg!(feature = "win32-trace") {
41+
if *DEBUG_TRACE_ENABLED { println!($($rest)*); }
42+
}
4143
}
42-
} }
44+
}
4345

4446
/// When we create the pipe, how big of a write buffer do we specify?
4547
///

0 commit comments

Comments
 (0)