From ffb9584e56aa9fc561e50ff58a24243f2fb694b6 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Thu, 31 Aug 2023 08:13:52 +0200 Subject: [PATCH] fix return value --- uwac/libuwac/uwac-output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uwac/libuwac/uwac-output.c b/uwac/libuwac/uwac-output.c index 888ca3d62..ebce03848 100644 --- a/uwac/libuwac/uwac-output.c +++ b/uwac/libuwac/uwac-output.c @@ -35,7 +35,7 @@ static bool dupstr(char** dst, const char* src) free(*dst); *dst = NULL; if (!src) - return TRUE; + return true; *dst = _strdup(src); return *dst != NULL; }