summary refs log tree commit diff
path: root/crypto
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-07-24 23:38:26 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-07-24 23:38:26 +0700
commit343965110ec84563722697ccd964d58a19411854 (patch)
tree3b35b5d9e2a0fa59eb952a4240bc289e69fb3fff /crypto
parentMore precise preprocessor directives (diff)
downloadBouncyCastle.NET-ed25519-343965110ec84563722697ccd964d58a19411854.tar.xz
Formatting
Diffstat (limited to 'crypto')
-rw-r--r--crypto/src/math/raw/Interleave.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/raw/Interleave.cs b/crypto/src/math/raw/Interleave.cs
index f22177fe8..9ff85c572 100644
--- a/crypto/src/math/raw/Interleave.cs
+++ b/crypto/src/math/raw/Interleave.cs
@@ -96,7 +96,7 @@ namespace Org.BouncyCastle.Math.Raw
             if (Bmi2.X64.IsSupported)
             {
                 low  = Bmi2.X64.ParallelBitDeposit(x >> 32, 0xAAAAAAAAAAAAAAAAUL);
-                return Bmi2.X64.ParallelBitDeposit(x, 0xAAAAAAAAAAAAAAAAUL);
+                return Bmi2.X64.ParallelBitDeposit(x      , 0xAAAAAAAAAAAAAAAAUL);
             }
 #endif