From ce5189c94a6b6ae1bce486bf32c61581813f9ad1 Mon Sep 17 00:00:00 2001 From: Liam Waldron Date: Tue, 5 Nov 2024 08:52:24 -0500 Subject: [PATCH] v4.0.0rc-6 - update successlog to not depend on unicode output --- VERSION | 2 +- libglacier.c | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 1882577..6fc9553 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.0-rc5 +4.0.0-rc6 diff --git a/libglacier.c b/libglacier.c index 1ffd410..c79bfc5 100644 --- a/libglacier.c +++ b/libglacier.c @@ -133,14 +133,11 @@ errlog(char MSG[]) void successlog(char MSG[]) { - const wchar_t w_check = 0x2713; - setlocale(LC_CTYPE, ""); - if (MSG == NULL) { return; } - printf(COL_GREEN "[%lc]" COL_RESET " %s\n", w_check, MSG); + printf(COL_GREEN "[*]" COL_RESET " %s\n", MSG); return; }