From effc920e608185bb7f20697ed464e3bae46fb5e4 Mon Sep 17 00:00:00 2001 From: Thomas Gamper Date: Wed, 7 Jun 2023 17:55:34 +0200 Subject: [PATCH] mz_os_posix.c - fix warning caused by missing cast of return value of strdup --- mz_os_posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mz_os_posix.c b/mz_os_posix.c index aefc1a4..cd26449 100644 --- a/mz_os_posix.c +++ b/mz_os_posix.c @@ -90,7 +90,7 @@ uint8_t *mz_os_utf8_string_create(const char *string, int32_t encoding) { } #else uint8_t *mz_os_utf8_string_create(const char *string, int32_t encoding) { - return strdup(string); + return (uint8_t*)strdup(string); } #endif