From 4c861b381667b8e496483bf89f72674ad7e5fc25 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 27 Feb 2018 21:02:31 +0100 Subject: [PATCH] crypto/ec/asm/x25519-x86_64.pl: close STDOUT, not $STDOUT Fixes #5471 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5472) --- crypto/ec/asm/x25519-x86_64.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ec/asm/x25519-x86_64.pl b/crypto/ec/asm/x25519-x86_64.pl index 68a7771a92..9a5693965e 100755 --- a/crypto/ec/asm/x25519-x86_64.pl +++ b/crypto/ec/asm/x25519-x86_64.pl @@ -815,4 +815,4 @@ ___ $code =~ s/\`([^\`]*)\`/eval $1/gem; print $code; -close $STDOUT; +close STDOUT; -- 2.25.1