From 9f18131a2ace84c393982734c93ce22eda558510 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 10 Mar 2016 07:45:28 +0100 Subject: libipa_hbac: Fix typo in constant name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On platforms without the format attribute, libhbac could not be compiled. Reviewed-by: Lukáš Slebodník --- src/providers/ipa/ipa_hbac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/ipa/ipa_hbac.h b/src/providers/ipa/ipa_hbac.h index ee5f1919b..22dd8ffc4 100644 --- a/src/providers/ipa/ipa_hbac.h +++ b/src/providers/ipa/ipa_hbac.h @@ -53,7 +53,7 @@ enum hbac_debug_level { #ifdef HAVE_FUNCTION_ATTRIBUTE_FORMAT #define HBAC_ATTRIBUTE_PRINTF(a1, a2) __attribute__((format(printf, a1, a2))) #else -#define HABC_ATTRIBUTE_PRINTF(a1, a2) +#define HBAC_ATTRIBUTE_PRINTF(a1, a2) #endif /** -- cgit