From 16909c80a3954ad729e4cfc048612e2cd6469d39 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Fri, 9 Nov 2018 08:36:45 -0600 Subject: [PATCH] drivers/syslog/syslog_flush.c: Uncomment the g_syslog_channel->sc_flush call --- drivers/syslog/syslog_flush.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/syslog/syslog_flush.c b/drivers/syslog/syslog_flush.c index 8207ffae22..e236714a27 100644 --- a/drivers/syslog/syslog_flush.c +++ b/drivers/syslog/syslog_flush.c @@ -89,12 +89,8 @@ int syslog_flush(void) (void)syslog_flush_intbuffer(g_syslog_channel, true); #endif -#if 0 /* Then flush all of the buffered output to the SYSLOG device */ DEBUGASSERT(g_syslog_channel->sc_flush != NULL); return g_syslog_channel->sc_flush(); -#else - return 0; -#endif }