From 8d4d56b1f15973ae95047e2b1b5baf82e587f3bc Mon Sep 17 00:00:00 2001 From: Benjamin Berg Date: Mon, 4 May 2020 14:56:13 +0200 Subject: [PATCH] tests: Annotate a few variables as unused These solely exist for memory management, but the static analysis complains. --- tests/test-fpi-device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-fpi-device.c b/tests/test-fpi-device.c index ff61849..d2f86e6 100644 --- a/tests/test-fpi-device.c +++ b/tests/test-fpi-device.c @@ -635,7 +635,7 @@ test_driver_enroll_progress (void) { g_autoptr(FpAutoResetClass) dev_class = auto_reset_device_class (); g_autoptr(FpAutoCloseDevice) device = NULL; - g_autoptr(FpPrint) enrolled_print = NULL; + G_GNUC_UNUSED g_autoptr(FpPrint) enrolled_print = NULL; ExpectedEnrollData expected_enroll_data = {0}; FpiDeviceFake *fake_dev; @@ -1355,7 +1355,7 @@ test_driver_identify_report_no_callback (void) g_autoptr(MatchCbData) match_data = g_new0 (MatchCbData, 1); g_autoptr(GPtrArray) prints = g_ptr_array_new_with_free_func (g_object_unref); g_autoptr(FpAutoCloseDevice) device = NULL; - g_autoptr(FpPrint) enrolled_print = NULL; + G_GNUC_UNUSED g_autoptr(FpPrint) enrolled_print = NULL; g_autoptr(FpPrint) print = NULL; g_autoptr(FpPrint) match = NULL; g_autoptr(GError) error = NULL;