From 44bca66c5929e63bb39ed68420a74c97523b411f Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 13 Feb 2009 18:02:47 +0100 Subject: make PA_GCC_PACKED and PA_GCC_MALLOC actually work --- src/pulse/gccmacro.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pulse/gccmacro.h') diff --git a/src/pulse/gccmacro.h b/src/pulse/gccmacro.h index 0b1a1a66..0f751c03 100644 --- a/src/pulse/gccmacro.h +++ b/src/pulse/gccmacro.h @@ -88,7 +88,7 @@ #endif #ifndef PA_GCC_PACKED -#ifdef __GNUCC__ +#ifdef __GNUC__ #define PA_GCC_PACKED __attribute__ ((packed)) #else /** Structure shall be packed in memory **/ @@ -109,7 +109,7 @@ #endif #ifndef PA_GCC_MALLOC -#ifdef __GNUCC__ +#ifdef __GNUC__ #define PA_GCC_MALLOC __attribute__ ((malloc)) #else /** Macro for usage of GCC's malloc attribute */ -- cgit