diff gui/win32/interface.c @ 36848:92e53547406d

Silence Win32 GUI's "warning: unused parameter".
author ib
date Tue, 25 Feb 2014 17:47:05 +0000
parents f5320e43d458
children 6f52d357f7a5
line wrap: on
line diff
--- a/gui/win32/interface.c	Tue Feb 25 17:38:54 2014 +0000
+++ b/gui/win32/interface.c	Tue Feb 25 17:47:05 2014 +0000
@@ -501,6 +501,8 @@
 {
     MSG msg;
 
+    (void) param;
+
     if(!skinName) skinName = strdup("Blue");
     if(!mygui) mygui = create_gui(get_path("skins"), guiSetEvent);
     if(!mygui) exit_player(EXIT_ERROR);
@@ -817,6 +819,8 @@
     char file[MAX_PATH];
     char *filepart = file;
 
+    (void) insert;   // NOTE TO MYSELF: this isn't yet implemented
+
     if (strstr(pathname, "://"))
     {
         mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Adding special %s\n", pathname);