summaryrefslogtreecommitdiffstats
path: root/src/pulse/gccmacro.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-02-13 18:02:47 +0100
committerLennart Poettering <lennart@poettering.net>2009-02-13 18:02:47 +0100
commit44bca66c5929e63bb39ed68420a74c97523b411f (patch)
treef82acaf62128b0e8224af7797357322897904270 /src/pulse/gccmacro.h
parentc0fb91db545774ec45f208a6f771c22a0b153637 (diff)
make PA_GCC_PACKED and PA_GCC_MALLOC actually work
Diffstat (limited to 'src/pulse/gccmacro.h')
-rw-r--r--src/pulse/gccmacro.h4
1 files changed, 2 insertions, 2 deletions
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 */