Skip to content

Commit

Permalink
windows: cleanup: Use more standard indentation for macro
Browse files Browse the repository at this point in the history
  • Loading branch information
antrik committed Sep 23, 2017
1 parent c37a052 commit e62d6d8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/platform/windows/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,13 @@ lazy_static! {
}

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

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

0 comments on commit e62d6d8

Please sign in to comment.