From c081993fd7897de57aa7ae62757f106073186106 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 22 May 2014 06:20:10 +0200 Subject: [PATCH] (Menu common) Put variable declarations on top --- frontend/menu/menu_common.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/menu/menu_common.c b/frontend/menu/menu_common.c index 34e2ff60bd..4611874fcc 100644 --- a/frontend/menu/menu_common.c +++ b/frontend/menu/menu_common.c @@ -71,9 +71,11 @@ int menu_defer_core(void *info_, const char *dir, const char *path, char *deferr { core_info_list_t *core_info; const core_info_t *info; + size_t supported; + core_info = (core_info_list_t*)info_; info = NULL; - size_t supported = 0; + supported = 0; fill_pathname_join(deferred_path, dir, path, sizeof_deferred_path);