From 69b1ea1c2f01ad8c3d6e7a078760537531ec321b Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 16 Nov 2022 16:37:10 +0100 Subject: [PATCH] Fix warning about enum conversion (#71400) --- lasso/id-ff/profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lasso/id-ff/profile.c b/lasso/id-ff/profile.c index 8d7b34c6..6decfee1 100644 --- a/lasso/id-ff/profile.c +++ b/lasso/id-ff/profile.c @@ -667,7 +667,7 @@ LassoProfileSignatureVerifyHint lasso_profile_get_signature_verify_hint(LassoProfile *profile) { if (! LASSO_IS_PROFILE(profile) || ! profile->private_data) - return LASSO_PROFILE_SIGNATURE_HINT_MAYBE; + return LASSO_PROFILE_SIGNATURE_VERIFY_HINT_MAYBE; return profile->private_data->signature_verify_hint; }