src/plugin.h: Use __attribute__((format)) for plugin_log.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Fri, 6 Jun 2008 10:21:01 +0000 (12:21 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Fri, 6 Jun 2008 10:21:01 +0000 (12:21 +0200)
All __attribute__'s will be automatically set to /**/ when not using the
GNU CC via a macro in src/collectd.h. This way this should be portable.

src/collectd.h
src/plugin.h

index 55aac16..411048a 100644 (file)
 
 #define STATIC_ARRAY_LEN(array) (sizeof (array) / sizeof ((array)[0]))
 
+/* Remove GNU specific __attribute__ settings when using another compiler */
+#if !__GNUC__
+# define __attribute__(x) /**/
+#endif
+
 extern char hostname_g[];
 extern int  interval_g;
 
index 25c745c..91978bd 100644 (file)
@@ -205,7 +205,9 @@ int plugin_dispatch_values (const char *name, value_list_t *vl);
 
 int plugin_dispatch_notification (const notification_t *notif);
 
-void plugin_log (int level, const char *format, ...);
+void plugin_log (int level, const char *format, ...)
+       __attribute__ ((format(printf,2,3)));
+
 #define ERROR(...)   plugin_log (LOG_ERR,     __VA_ARGS__)
 #define WARNING(...) plugin_log (LOG_WARNING, __VA_ARGS__)
 #define NOTICE(...)  plugin_log (LOG_NOTICE,  __VA_ARGS__)