cleanup: function attribute 'format'
[lttng-ust.git] / include / lttng / tracef.h
index 2b57ca8c38406ae586bdd4ef8c530add556375f5..1b455063915863f645fcc6e6d2d479fb03a60856 100644 (file)
@@ -14,12 +14,12 @@ extern "C" {
 #endif
 
 extern
-__attribute__((format(printf, 1, 2)))
-void _lttng_ust_tracef(const char *fmt, ...);
+void _lttng_ust_tracef(const char *fmt, ...)
+       __attribute__((format(printf, 1, 2)));
 
 extern
-__attribute__((format(printf, 1, 0)))
-void _lttng_ust_vtracef(const char *fmt, va_list ap);
+void _lttng_ust_vtracef(const char *fmt, va_list ap)
+       __attribute__((format(printf, 1, 0)));
 
 #define tracef(fmt, ...)                                               \
        do {                                                            \
This page took 0.024614 seconds and 4 git commands to generate.