From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Wed, 2 Apr 2025 12:55:05 +0000 (+0200) Subject: frontend/menu: label can only go with statement X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c66e6167d0e5144c55e150e109564f0efdcca84;p=pcsx_rearmed.git frontend/menu: label can only go with statement fix for older gcc --- diff --git a/frontend/menu.c b/frontend/menu.c index 5975b801..99ca5925 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -2542,7 +2542,6 @@ static void scan_bios_plugins(void) #ifndef NO_DYLIB do_plugins: - char *p; snprintf(fname, sizeof(fname), "%s/", Config.PluginsDir); dir = opendir(fname); if (dir == NULL) { @@ -2552,6 +2551,7 @@ do_plugins: while (1) { void *h, *tmp; + char *p; errno = 0; ent = readdir(dir);