From 37b19674f1183604fecb561405ebc1b89ac2b787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Wed, 17 Jun 2020 14:14:35 +0200 Subject: [PATCH] verify: Use fast matching callback also for non-storage devices --- examples/verify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/verify.c b/examples/verify.c index 3b4c74d..b47e1db 100644 --- a/examples/verify.c +++ b/examples/verify.c @@ -256,7 +256,7 @@ start_verification (FpDevice *dev, VerifyData *verify_data) g_print ("Print loaded. Time to verify!\n"); fp_device_verify (dev, verify_print, verify_data->cancellable, - NULL, NULL, NULL, + on_match_cb, verify_data, NULL, (GAsyncReadyCallback) on_verify_completed, verify_data); }