|
@@ -45,6 +45,17 @@
|
|
#include "libvhost-user.h"
|
|
#include "libvhost-user.h"
|
|
|
|
|
|
/* usually provided by GLib */
|
|
/* usually provided by GLib */
|
|
|
|
+#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)
|
|
|
|
+#if !defined(__clang__) && (__GNUC__ == 4 && __GNUC_MINOR__ == 4)
|
|
|
|
+#define G_GNUC_PRINTF(format_idx, arg_idx) \
|
|
|
|
+ __attribute__((__format__(gnu_printf, format_idx, arg_idx)))
|
|
|
|
+#else
|
|
|
|
+#define G_GNUC_PRINTF(format_idx, arg_idx) \
|
|
|
|
+ __attribute__((__format__(__printf__, format_idx, arg_idx)))
|
|
|
|
+#endif
|
|
|
|
+#else /* !__GNUC__ */
|
|
|
|
+#define G_GNUC_PRINTF(format_idx, arg_idx)
|
|
|
|
+#endif /* !__GNUC__ */
|
|
#ifndef MIN
|
|
#ifndef MIN
|
|
#define MIN(x, y) ({ \
|
|
#define MIN(x, y) ({ \
|
|
typeof(x) _min1 = (x); \
|
|
typeof(x) _min1 = (x); \
|
|
@@ -151,7 +162,7 @@ vu_request_to_string(unsigned int req)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-static void
|
|
|
|
|
|
+static void G_GNUC_PRINTF(2, 3)
|
|
vu_panic(VuDev *dev, const char *msg, ...)
|
|
vu_panic(VuDev *dev, const char *msg, ...)
|
|
{
|
|
{
|
|
char *buf = NULL;
|
|
char *buf = NULL;
|