On 22/9/23 18:37, Thomas Huth wrote:
When compiling this file with -Wshadow=local , we get:

../tests/qtest/m48t59-test.c: In function ‘bcd_check_time’:
../tests/qtest/m48t59-test.c:195:17: warning: declaration of ‘s’
  shadows a previous local [-Wshadow=local]
   195 |         long t, s;
       |                 ^
../tests/qtest/m48t59-test.c:158:17: note: shadowed declaration is here
   158 |     QTestState *s = m48t59_qtest_start();
       |                 ^

Rename the QTestState variable to "qts" which is the common
naming for such a variable in other tests.

Reported-by: Markus Armbruster <arm...@redhat.com>
Signed-off-by: Thomas Huth <th...@redhat.com>
---
  tests/qtest/m48t59-test.c | 12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <phi...@linaro.org>


Reply via email to