tests/qtest/libqtest.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
Newer gcc compiler (version 16.0.0 20260103 (Red Hat 16.0.0-0) (GCC))
detects an unused variable error:
../tests/qtest/libqtest.c: In function ‘qtest_qom_has_concrete_type’:
../tests/qtest/libqtest.c:1044:9: error: variable ‘idx’ set but not used [-Werror=unused-but-set-variable=]
Remove idx.
Cc: Fabiano Rosas <farosas@suse.de>
Cc: Laurent Vivier <lvivier@redhat.com>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
---
tests/qtest/libqtest.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/tests/qtest/libqtest.c b/tests/qtest/libqtest.c
index 622464e3656e2c0138c4cf1cbf98733f84dce876..61f05be5caeaff1c466395234078a37a5d1c4398 100644
--- a/tests/qtest/libqtest.c
+++ b/tests/qtest/libqtest.c
@@ -1041,7 +1041,6 @@ static bool qtest_qom_has_concrete_type(const char *parent_typename,
QObject *qobj;
QString *qstr;
QDict *devinfo;
- int idx;
if (!list) {
QDict *resp;
@@ -1066,7 +1065,7 @@ static bool qtest_qom_has_concrete_type(const char *parent_typename,
}
}
- for (p = qlist_first(list), idx = 0; p; p = qlist_next(p), idx++) {
+ for (p = qlist_first(list); p; p = qlist_next(p)) {
devinfo = qobject_to(QDict, qlist_entry_obj(p));
g_assert(devinfo);
--
2.52.0
On 1/12/26 13:31, Cédric Le Goater wrote:
> Newer gcc compiler (version 16.0.0 20260103 (Red Hat 16.0.0-0) (GCC))
> detects an unused variable error:
>
> ../tests/qtest/libqtest.c: In function ‘qtest_qom_has_concrete_type’:
> ../tests/qtest/libqtest.c:1044:9: error: variable ‘idx’ set but not used [-Werror=unused-but-set-variable=]
>
> Remove idx.
>
> Cc: Fabiano Rosas <farosas@suse.de>
> Cc: Laurent Vivier <lvivier@redhat.com>
> Signed-off-by: Cédric Le Goater <clg@redhat.com>
> ---
> tests/qtest/libqtest.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/tests/qtest/libqtest.c b/tests/qtest/libqtest.c
> index 622464e3656e2c0138c4cf1cbf98733f84dce876..61f05be5caeaff1c466395234078a37a5d1c4398 100644
> --- a/tests/qtest/libqtest.c
> +++ b/tests/qtest/libqtest.c
> @@ -1041,7 +1041,6 @@ static bool qtest_qom_has_concrete_type(const char *parent_typename,
> QObject *qobj;
> QString *qstr;
> QDict *devinfo;
> - int idx;
>
> if (!list) {
> QDict *resp;
> @@ -1066,7 +1065,7 @@ static bool qtest_qom_has_concrete_type(const char *parent_typename,
> }
> }
>
> - for (p = qlist_first(list), idx = 0; p; p = qlist_next(p), idx++) {
> + for (p = qlist_first(list); p; p = qlist_next(p)) {
> devinfo = qobject_to(QDict, qlist_entry_obj(p));
> g_assert(devinfo);
>
Applied to vfio-next.
Thanks,
C.
On 12/1/26 13:31, Cédric Le Goater wrote: > Newer gcc compiler (version 16.0.0 20260103 (Red Hat 16.0.0-0) (GCC)) > detects an unused variable error: > > ../tests/qtest/libqtest.c: In function ‘qtest_qom_has_concrete_type’: > ../tests/qtest/libqtest.c:1044:9: error: variable ‘idx’ set but not used [-Werror=unused-but-set-variable=] > > Remove idx. > > Cc: Fabiano Rosas <farosas@suse.de> > Cc: Laurent Vivier <lvivier@redhat.com> > Signed-off-by: Cédric Le Goater <clg@redhat.com> > --- > tests/qtest/libqtest.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
© 2016 - 2026 Red Hat, Inc.