From b5daae72da8f9513faf6ba261133ae52e6f96ef2 Mon Sep 17 00:00:00 2001 From: Brian West Date: Fri, 9 Feb 2018 11:52:27 -0600 Subject: [PATCH] FS-10945: [Build-System] build fails for Master #resolve --- libs/srtp/crypto/include/datatypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/srtp/crypto/include/datatypes.h b/libs/srtp/crypto/include/datatypes.h index d20b9e6f8c..8440376824 100644 --- a/libs/srtp/crypto/include/datatypes.h +++ b/libs/srtp/crypto/include/datatypes.h @@ -342,7 +342,7 @@ octet_string_set_to_zero(void *s, size_t len); /* Fall back. */ static inline uint32_t be32_to_cpu(uint32_t v) { /* optimized for x86. */ - asm("bswap %0" : "=r" (v) : "0" (v)); + __asm__("bswap %0" : "=r" (v) : "0" (v)); return v; } # else /* HAVE_X86 */