diff --git a/crypto/libntrup/src/avx/int32_sort.c b/crypto/libntrup/src/avx/int32_sort.c index 89c2c2aa6..ea836d0b8 100644 --- a/crypto/libntrup/src/avx/int32_sort.c +++ b/crypto/libntrup/src/avx/int32_sort.c @@ -7,7 +7,7 @@ typedef crypto_int32 int32; static inline void minmax(int32 *x, int32 *y) { - asm("movl (%0),%%eax;movl (%1),%%ebx;cmpl %%ebx,%%eax;mov %%eax,%%edx;cmovg " + __asm__("movl (%0),%%eax;movl (%1),%%ebx;cmpl %%ebx,%%eax;mov %%eax,%%edx;cmovg " "%%ebx,%%eax;cmovg %%edx,%%ebx;movl %%eax,(%0);movl %%ebx,(%1)" : : "r"(x), "r"(y) @@ -463,4 +463,4 @@ int32_sort(int32 *x, int n) if(q >= 2) multiminmax1plus1(x + 1, n - 2); } -#endif \ No newline at end of file +#endif diff --git a/llarp/constants/version.hpp b/llarp/constants/version.hpp index 86d8c0388..15da8b310 100644 --- a/llarp/constants/version.hpp +++ b/llarp/constants/version.hpp @@ -2,7 +2,7 @@ #define LLARP_VERSION_HPP #if defined(_WIN32) && defined(RC_INVOKED) -#define LLARP_VERSION 0,5,0,0 +#define LLARP_VERSION 0, 5, 0, 0 #else #ifndef LLARP_VERSION_MAJ