1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

runtests.pl: fix "uninitialized value" warning

follow-up to e12825c642
This commit is contained in:
Daniel Stenberg 2020-12-11 13:52:59 +01:00
parent e12825c642
commit 3e92799171
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -3593,7 +3593,7 @@ sub singletest {
$cond = $1;
$rev = 1;
}
$rev ^= $feature{$cond};
$rev ^= $feature{$cond} ? 1 : 0;
$show = $rev;
next;
}