From e2ba7cd29617ae05087ad3d25c55a2eb8ce607a3 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Thu, 28 May 2026 23:56:29 -0300 Subject: fix issues and warnings when compiling with glibc < 2.32 (#57, #58) This also fixes some inconsistencies such as mixing both strerror and strerrordesc_np, and possible formatting issues. --- src/writer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/writer.cc') diff --git a/src/writer.cc b/src/writer.cc index ee712ba..3b52fd6 100644 --- a/src/writer.cc +++ b/src/writer.cc @@ -921,7 +921,7 @@ void ProcessBroadcastReply(TBroadcastReplyData *Data){ return; } - BroadcastMessage(TALK_STATUS_MESSAGE, Data->Message); + BroadcastMessage(TALK_STATUS_MESSAGE, "%s", Data->Message); delete Data; } -- cgit v1.2.3