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. --- windows/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'windows/gui.c') diff --git a/windows/gui.c b/windows/gui.c index 0df219002..431e5c9bb 100644 --- a/windows/gui.c +++ b/windows/gui.c @@ -56,7 +56,7 @@ void win32_run(void) int timeout; /* timeout in miliseconds */ UINT timer_id = 0; - LOG(("Starting messgae dispatcher")); + LOG("Starting messgae dispatcher"); while (!win32_quit) { /* run the scheduler and discover how long to wait for @@ -109,7 +109,7 @@ static void gui_get_clipboard(char **buffer, size_t *length) clipboard_handle = GetClipboardData(CF_TEXT); if (clipboard_handle != NULL) { content = GlobalLock(clipboard_handle); - LOG(("pasting %s", content)); + LOG("pasting %s", content); GlobalUnlock(clipboard_handle); } } -- cgit v1.2.3