clang doesn't support gnu_print attribute, so just leave it out when clang is used.
Signed-off-by: Armin Krezović <[email protected]> --- clients/stacking.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clients/stacking.c b/clients/stacking.c index 4285a17..dd3d338 100644 --- a/clients/stacking.c +++ b/clients/stacking.c @@ -184,7 +184,11 @@ fullscreen_handler(struct window *window, void *data) static void draw_string(cairo_t *cr, +#ifndef __clang__ const char *fmt, ...) __attribute__((format (gnu_printf, 2, 3))); +#else + const char *fmt, ...); +#endif static void draw_string(cairo_t *cr, -- 2.10.0 _______________________________________________ wayland-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/wayland-devel
