diff options
author | 2019-02-05 01:00:52 +0100 | |
---|---|---|
committer | 2019-02-05 01:00:52 +0100 | |
commit | 09f73a08eb652b4048b8096cc8d36c52e9a32ff8 (patch) | |
tree | b226671cfa4c3c78b6369fd5bb337a3b927a9b7d /src/tools/curve25519.c | |
parent | chacha20: name enums (diff) | |
download | wireguard-monolithic-historical-09f73a08eb652b4048b8096cc8d36c52e9a32ff8.tar.xz wireguard-monolithic-historical-09f73a08eb652b4048b8096cc8d36c52e9a32ff8.zip |
tools: fight compiler slightly harder
Diffstat (limited to 'src/tools/curve25519.c')
-rw-r--r-- | src/tools/curve25519.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/curve25519.c b/src/tools/curve25519.c index 648daed..c116e21 100644 --- a/src/tools/curve25519.c +++ b/src/tools/curve25519.c @@ -72,7 +72,7 @@ static inline void put_unaligned_le64(u64 s, u8 *d) static noinline void memzero_explicit(void *s, size_t count) { memset(s, 0, count); - asm volatile("": :"r"(s) :"memory"); + asm volatile("": :"r"(s) : "memory"); } #ifdef __SIZEOF_INT128__ |