From 4da9f7e7ce3e5fc62336dc6f041a30aabd2cacdc Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 22 Jul 2016 10:24:03 +0100 Subject: [PATCH] mapi: fix typo in macro name Fixes: 5ec140c17b54c2592009 ("mapi: Massage code to allow clang to compile.") Reported-by: Alexandre Demers Reviewed-by: Matt Turner Signed-off-by: Eric Engestrom --- src/mapi/entry_x86-64_tls.h | 2 +- src/mapi/entry_x86_tls.h | 2 +- src/mapi/entry_x86_tsd.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mapi/entry_x86-64_tls.h b/src/mapi/entry_x86-64_tls.h index c5262a18ddb..8f3fa914a78 100644 --- a/src/mapi/entry_x86-64_tls.h +++ b/src/mapi/entry_x86-64_tls.h @@ -25,7 +25,7 @@ * Chia-I Wu */ -#ifdef HAVE_FUNC_ATTRIBUTE_VISIBIITY +#ifdef HAVE_FUNC_ATTRIBUTE_VISIBILITY #define HIDDEN __attribute__((visibility("hidden"))) #else #define HIDDEN diff --git a/src/mapi/entry_x86_tls.h b/src/mapi/entry_x86_tls.h index 231b4093fe6..545b5a3c786 100644 --- a/src/mapi/entry_x86_tls.h +++ b/src/mapi/entry_x86_tls.h @@ -27,7 +27,7 @@ #include -#ifdef HAVE_FUNC_ATTRIBUTE_VISIBIITY +#ifdef HAVE_FUNC_ATTRIBUTE_VISIBILITY #define HIDDEN __attribute__((visibility("hidden"))) #else #define HIDDEN diff --git a/src/mapi/entry_x86_tsd.h b/src/mapi/entry_x86_tsd.h index 03d973520fe..0c28c8ff068 100644 --- a/src/mapi/entry_x86_tsd.h +++ b/src/mapi/entry_x86_tsd.h @@ -25,7 +25,7 @@ * Chia-I Wu */ -#ifdef HAVE_FUNC_ATTRIBUTE_VISIBIITY +#ifdef HAVE_FUNC_ATTRIBUTE_VISIBILITY #define HIDDEN __attribute__((visibility("hidden"))) #else #define HIDDEN -- 2.30.2