From b773112dd45c40208fb9085259ad90755d404964 Mon Sep 17 00:00:00 2001 From: XorTroll Date: Thu, 7 May 2020 13:24:24 +0200 Subject: [PATCH] Fix newline and comment --- nx/include/switch/runtime/diag.h | 2 +- nx/include/switch/services/lm.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/runtime/diag.h b/nx/include/switch/runtime/diag.h index 10ce3c66..d06fa273 100644 --- a/nx/include/switch/runtime/diag.h +++ b/nx/include/switch/runtime/diag.h @@ -404,4 +404,4 @@ NX_INLINE void diagLogImpl(const DiagLogMetadata *metadata) { #define DIAG_LOGF(fmt, ...) DIAG_DETAILED_LOGF(DiagLogSeverity_Info, false, fmt, ##__VA_ARGS__) -#define DIAG_VLOG(fmt, args) DIAG_DETAILED_VLOG(DiagLogSeverity_Info, false, fmt, args) \ No newline at end of file +#define DIAG_VLOG(fmt, args) DIAG_DETAILED_VLOG(DiagLogSeverity_Info, false, fmt, args) diff --git a/nx/include/switch/services/lm.h b/nx/include/switch/services/lm.h index 41f0cf24..5921a738 100644 --- a/nx/include/switch/services/lm.h +++ b/nx/include/switch/services/lm.h @@ -13,7 +13,7 @@ typedef enum { LmLogDestination_TMA = BIT(0), ///< Logs to TMA. LmLogDestination_UART = BIT(1), ///< Logs to UART. - LmLogDestination_UARTSleeping = BIT(2), ///< Logs to UART (). + LmLogDestination_UARTSleeping = BIT(2), ///< Logs to UART (when sleeping). LmLogDestination_All = 0xFFFF, ///< Logs to all locations. } LmLogDestination;