mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 02:58:29 +00:00
hw/audio/soundhw: Clean up global variable shadowing
Fix:
hw/audio/soundhw.c:86:33: error: declaration shadows a variable in the global scope [-Werror,-Wshadow]
void select_soundhw(const char *optarg, const char *audiodev)
^
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/getopt.h:77:14: note: previous declaration is here
extern char *optarg; /* getopt(3) external variables */
^
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231004120019.93101-2-philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
committed by
Markus Armbruster
parent
71efffbcfc
commit
badf708d69
@@ -83,7 +83,7 @@ void show_valid_soundhw(void)
|
||||
static struct soundhw *selected = NULL;
|
||||
static const char *audiodev_id;
|
||||
|
||||
void select_soundhw(const char *optarg, const char *audiodev)
|
||||
void select_soundhw(const char *name, const char *audiodev)
|
||||
{
|
||||
struct soundhw *c;
|
||||
|
||||
@@ -92,7 +92,7 @@ void select_soundhw(const char *optarg, const char *audiodev)
|
||||
}
|
||||
|
||||
for (c = soundhw; c->name; ++c) {
|
||||
if (g_str_equal(c->name, optarg)) {
|
||||
if (g_str_equal(c->name, name)) {
|
||||
selected = c;
|
||||
audiodev_id = audiodev;
|
||||
break;
|
||||
@@ -100,7 +100,7 @@ void select_soundhw(const char *optarg, const char *audiodev)
|
||||
}
|
||||
|
||||
if (!c->name) {
|
||||
error_report("Unknown sound card name `%s'", optarg);
|
||||
error_report("Unknown sound card name `%s'", name);
|
||||
show_valid_soundhw();
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@@ -8,6 +8,6 @@ void deprecated_register_soundhw(const char *name, const char *descr,
|
||||
|
||||
void soundhw_init(void);
|
||||
void show_valid_soundhw(void);
|
||||
void select_soundhw(const char *optarg, const char *audiodev);
|
||||
void select_soundhw(const char *name, const char *audiodev);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user