From 3e927991711b134feb000e772b97a995e09e5827 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 11 Dec 2020 13:52:59 +0100 Subject: runtests.pl: fix "uninitialized value" warning follow-up to e12825c642a88774 --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index 24e65e7cd..92ff1f61d 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -3593,7 +3593,7 @@ sub singletest { $cond = $1; $rev = 1; } - $rev ^= $feature{$cond}; + $rev ^= $feature{$cond} ? 1 : 0; $show = $rev; next; } -- cgit v1.2.1