diff gui/interface.c @ 33541:729826b857cf

Avoid compiler warnings. Remove unused parameter, use passed parameter instead of global variable or tag variable as unused to avoid warnings of unused variables.
author ib
date Thu, 16 Jun 2011 13:09:52 +0000
parents 7ced3616af42
children 107084241b00
line wrap: on
line diff
--- a/gui/interface.c	Thu Jun 16 12:44:28 2011 +0000
+++ b/gui/interface.c	Thu Jun 16 13:09:52 2011 +0000
@@ -566,7 +566,7 @@
     switch (type) {
     case guiXEvent:
         guiIntfStruct.event_struct = arg;
-        wsEvents(wsDisplay, arg, NULL);
+        wsEvents(wsDisplay, arg);
         gtkEventHandling();
         break;