From 5edeaeed510d30a68ee41e956ec20ad403bc6d02 Mon Sep 17 00:00:00 2001 From: FunkyFr3sh Date: Sat, 2 Sep 2023 23:09:10 +0200 Subject: [PATCH] remove const --- src/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debug.c b/src/debug.c index 3bd4213..3ef9a2d 100644 --- a/src/debug.c +++ b/src/debug.c @@ -130,8 +130,8 @@ void dbg_init() if (wine_get_host_version) { - const char* sysname = NULL; - const char* release = NULL; + char* sysname = NULL; + char* release = NULL; wine_get_host_version(&sysname, &release);