From 9a850bc3f39c09f869b87444512bc899eb60fdc7 Mon Sep 17 00:00:00 2001 From: Steven Jackson Date: Thu, 7 Nov 2013 23:56:35 +0000 Subject: [PATCH] Fixed a build issue with GCC 4.8.1 -Werror is specified and so it was preventing a build. --- libxfce4mixer/xfce-mixer-debug.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libxfce4mixer/xfce-mixer-debug.h b/libxfce4mixer/xfce-mixer-debug.h index 4ade97c..ea279f8 100644 --- a/libxfce4mixer/xfce-mixer-debug.h +++ b/libxfce4mixer/xfce-mixer-debug.h @@ -34,7 +34,8 @@ void xfce_mixer_debug_real (const gchar *log_domain, const gchar *file, const gchar *func, gint line, - const gchar *format, ...); + const gchar *format, ...) + __attribute__((format(printf, 5, 6))); void xfce_mixer_dump_gst_data (void); -- 1.8.3.2