From b11cf48853bc4eccde60bc82180025f0797fa823 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sun, 3 Aug 2025 15:29:48 +0100 Subject: Use shorter spellings of __asm and __attribute Turns out, there's no need for the trailing underscores. Plus, glibc does some stupid stuff with __attribute__ for non-GCC compilers. Not that that matters here, but it seems like a good practice just to use the forms that never have such problems. And it's shorter too. --- src/vcall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vcall.h') diff --git a/src/vcall.h b/src/vcall.h index f3a1f02..20cde7e 100644 --- a/src/vcall.h +++ b/src/vcall.h @@ -104,7 +104,7 @@ // I thought static inline was supposed to prevent unused warnings??? #if defined(__GNUC__) || defined(__clang__) -#define _VCALL_UNUSED __attribute__((unused)) +#define _VCALL_UNUSED __attribute((unused)) #else #define _VCALL_UNUSED #endif -- cgit v1.2.3-54-g00ecf