frontend/menu: label can only go with statement
authorApaczer <94932128+Apaczer@users.noreply.github.com>
Wed, 2 Apr 2025 12:55:05 +0000 (14:55 +0200)
committernotaz <notasas@gmail.com>
Wed, 2 Apr 2025 21:53:29 +0000 (00:53 +0300)
fix for older gcc

frontend/menu.c

index 5975b80..99ca592 100644 (file)
@@ -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);