From 28aaa0bd1b5c5eb6a798d0496c7edb11e9729e49 Mon Sep 17 00:00:00 2001 From: Michael Munday Date: Mon, 18 Sep 2017 11:50:29 +0100 Subject: [PATCH] crypto/elliptic: gofmt MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Ia4b49736d3b33cddf58905c6b19febbca45b2ad2 Reviewed-on: https://go-review.googlesource.com/64270 Reviewed-by: Daniel Martí Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot --- src/crypto/elliptic/p256_amd64.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/elliptic/p256_amd64.go b/src/crypto/elliptic/p256_amd64.go index 26f1f0df83..bde8e3dfbb 100644 --- a/src/crypto/elliptic/p256_amd64.go +++ b/src/crypto/elliptic/p256_amd64.go @@ -280,7 +280,7 @@ func uint64IsZero(x uint64) int { x &= x >> 4 x &= x >> 2 x &= x >> 1 - return int(x&1) + return int(x & 1) } // scalarIsZero returns 1 if scalar represents the zero value, and zero -- 2.48.1