Skip to content

Commit 2729899

Browse files
ehellbarktf
authored andcommitted
fixing formatting errors
1 parent 0518362 commit 2729899

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Foundation/include/Framework/Signpost.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,13 +532,13 @@ void o2_debug_log_set_stacktrace(_o2_log_t* log, int stacktrace)
532532
})
533533

534534
// Similar to the above, however it will also print a normal critical message regardless of the signpost being enabled or not.
535-
#define O2_SIGNPOST_EVENT_EMIT_CRITICAL(log, id, name, format, ...) __extension__({ \
535+
#define O2_SIGNPOST_EVENT_EMIT_CRITICAL(log, id, name, format, ...) __extension__({ \
536536
if (O2_BUILTIN_UNLIKELY(O2_SIGNPOST_ENABLED_MAC(log))) { \
537537
O2_SIGNPOST_EVENT_EMIT_MAC(log, id, name, format, ##__VA_ARGS__); \
538538
} else if (O2_BUILTIN_UNLIKELY(private_o2_log_##log->stacktrace)) { \
539539
_o2_signpost_event_emit(private_o2_log_##log, id, name, remove_engineering_type(format).data(), ##__VA_ARGS__); \
540540
} \
541-
O2_LOG_MACRO_RAW(critical, remove_engineering_type(format).data(), ##__VA_ARGS__); \
541+
O2_LOG_MACRO_RAW(critical, remove_engineering_type(format).data(), ##__VA_ARGS__); \
542542
})
543543

544544
#define O2_SIGNPOST_START(log, id, name, format, ...) \

0 commit comments

Comments
 (0)