From 16fe763707bda678f317b62dc2c1c37ba24c2689 Mon Sep 17 00:00:00 2001 From: EXtremeExploit Date: Mon, 16 Mar 2026 10:31:00 -0300 Subject: [PATCH] os/log: Fix syslog identification Signed-off-by: EXtremeExploit --- os/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/log.c b/os/log.c index b091043a0b..269fb93e50 100644 --- a/os/log.c +++ b/os/log.c @@ -218,7 +218,7 @@ static inline void doLogSync(void) { static void initSyslog(void) { #ifdef CONFIG_SYSLOG - char buffer[4096]; + static char buffer[4096]; strcpy(buffer, xorgSyslogIdent); snprintf(buffer, sizeof(buffer), "%s :%s", xorgSyslogIdent, (display ? display : "<>"));