From aa06d871baeda2269ce21bdbff6e86dcdb2769d5 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 7 Nov 2017 01:07:22 +0100 Subject: [PATCH] Indent --- src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c b/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c index 0650a918..c1dc27c5 100644 --- a/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c +++ b/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c @@ -514,8 +514,8 @@ equal(signed char b, signed char c) static unsigned char negative(signed char b) { - uint64_t x = - b; /* 18446744073709551361..18446744073709551615: yes; 0..255: no */ + /* 18446744073709551361..18446744073709551615: yes; 0..255: no */ + uint64_t x = b; x >>= 63; /* 1: yes; 0: no */