Fix warnings related to variable types

This commit is contained in:
Alexander Babikov
2022-04-14 07:00:06 +05:00
parent 042e3df65d
commit 4e82d93729
6 changed files with 11 additions and 11 deletions

View File

@@ -1169,7 +1169,7 @@ pc_close(thread_t *ptr)
#ifdef __APPLE__
static void _ui_window_title(void *s)
{
ui_window_title((const wchar_t *) s);
ui_window_title((wchar_t *) s);
free(s);
}
#endif