File 0662-crypto-Fix-compiler-warning-in-engine_SUITE.patch of Package erlang
From e853e72c0a70d33f29390a8a9227ea44e73b7d82 Mon Sep 17 00:00:00 2001
From: Hans Nilsson <hans@erlang.org>
Date: Mon, 20 Sep 2021 08:55:10 +0200
Subject: [PATCH 1/3] crypto: Fix compiler warning in engine_SUITE
---
lib/crypto/test/engine_SUITE.erl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/crypto/test/engine_SUITE.erl b/lib/crypto/test/engine_SUITE.erl
index bac30ba51a..e75485f2bf 100644
--- a/lib/crypto/test/engine_SUITE.erl
+++ b/lib/crypto/test/engine_SUITE.erl
@@ -174,7 +174,7 @@ init_per_group(engine_fakes_rsa, Config) ->
#{link_type := static} ->
ct:log("~p:~p Statically linked",[?MODULE,?LINE]),
{skip, "Statically linked"};
- Info ->
+ _Info ->
%% Dynamically linked; use fake engine rsa implementation
group_load_engine(Config, [])
end;
--
2.31.1