From: Mark Wooding Date: Thu, 29 Dec 2016 14:14:45 +0000 (+0000) Subject: base/asm-common.h: Use `_' consistently for ignored macro arguments. X-Git-Tag: 2.3.0~20 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/commitdiff_plain/1e5664a6c71b3b90bde6012bc5d0adc45918efba base/asm-common.h: Use `_' consistently for ignored macro arguments. --- diff --git a/base/asm-common.h b/base/asm-common.h index 4a0a4209..6cd47f7a 100644 --- a/base/asm-common.h +++ b/base/asm-common.h @@ -863,13 +863,13 @@ name: // Default values for the various hooks. #ifndef FUNC_PREHOOK -# define FUNC_PREHOOK(name) +# define FUNC_PREHOOK(_) #endif #ifndef FUNC_POSTHOOK -# define FUNC_POSTHOOK(name) +# define FUNC_POSTHOOK(_) #endif #ifndef ENDFUNC_HOOK -# define ENDFUNC_HOOK(name) +# define ENDFUNC_HOOK(_) #endif #ifndef F