From 20e60004ae7dbb0cc923ce0f7a9f59105667521b Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 16 Nov 2022 16:37:10 +0100 Subject: [PATCH 4/6] Fix warning about enum conversion (#71313) --- 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; } -- 2.37.2