[systemd-commits] src/sd-daemon.h
Lennart Poettering
lennart at kemper.freedesktop.org
Mon Sep 13 11:09:16 PDT 2010
src/sd-daemon.h | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
New commits:
commit e702c2c07df401a3cf5f7e107b3b2560a8c35af1
Author: Rainer Gerhards <rgerhards at adiscon.com>
Date: Wed Sep 8 12:17:15 2010 +0200
minor nit: printf attribute was removed by -DSD_EXPORT_SYMBOLS
diff --git a/src/sd-daemon.h b/src/sd-daemon.h
index 6c8872f..008a44c 100644
--- a/src/sd-daemon.h
+++ b/src/sd-daemon.h
@@ -67,11 +67,15 @@ extern "C" {
See sd-daemon(7) for more information.
*/
-#if (__GNUC__ >= 4) && !defined(SD_EXPORT_SYMBOLS)
+#if __GNUC__ >= 4
#define _sd_printf_attr_(a,b) __attribute__ ((format (printf, a, b)))
-#define _sd_hidden_ __attribute__ ((visibility("hidden")))
#else
#define _sd_printf_attr_(a,b)
+#endif
+
+#if (__GNUC__ >= 4) && !defined(SD_EXPORT_SYMBOLS)
+#define _sd_hidden_ __attribute__ ((visibility("hidden")))
+#else
#define _sd_hidden_
#endif
More information about the systemd-commits
mailing list