From 7dbc5b24f716d743c599ca0d6fc03ad722daf869 Mon Sep 17 00:00:00 2001 From: NightlyFox Date: Fri, 21 Sep 2018 23:28:41 -0500 Subject: [PATCH] got rid of void* in menu-list, didnt save the file last time --- common/menu-list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/menu-list.c b/common/menu-list.c index 2a1a99d..27d510d 100644 --- a/common/menu-list.c +++ b/common/menu-list.c @@ -190,7 +190,7 @@ int themeMenuScan(const char* target) { menuAddEntry(me); else menuDeleteEntry(me); - free((void*)name);//This was allocated by calloc and copied over by strcpy + free(name);//This was allocated by calloc and copied over by strcpy } closedir(dir);