From c105738fa36bb2400adc47399c5b878d252d1c86 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 28 May 2015 16:08:46 +0100 Subject: Change LOG() macro to be varadic This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging. --- gtk/hotlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gtk/hotlist.c') diff --git a/gtk/hotlist.c b/gtk/hotlist.c index 3f2515ec8..fed6ae735 100644 --- a/gtk/hotlist.c +++ b/gtk/hotlist.c @@ -154,7 +154,7 @@ void nsgtk_hotlist_init_menu(void) while (event->widget != NULL) { w = GTK_WIDGET(gtk_builder_get_object(gladeFile, event->widget)); if (w == NULL) { - LOG(("Unable to connect menu widget ""%s""", event->widget)); } else { + LOG("Unable to connect menu widget ""%s""", event->widget); } else { g_signal_connect(G_OBJECT(w), "activate", event->handler, hotlist_window); } event++; -- cgit v1.2.3