From c574f41b2880a489f4248f0546c24aabc292caa1 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Fri, 13 Aug 2010 20:29:44 +0200 Subject: [PATCH] Win32 globalhotkeys: kill warnings --- modules/control/globalhotkeys/win32.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/control/globalhotkeys/win32.c b/modules/control/globalhotkeys/win32.c index e5baeaf2be..8e3aeafbf5 100644 --- a/modules/control/globalhotkeys/win32.c +++ b/modules/control/globalhotkeys/win32.c @@ -168,7 +168,7 @@ static void *Thread( void *p_data ) (LONG_PTR)p_intf ); /* Registering of Hotkeys */ - for( struct hotkey *p_hotkey = p_intf->p_libvlc->p_hotkeys; + for( const struct hotkey *p_hotkey = p_intf->p_libvlc->p_hotkeys; p_hotkey->psz_action != NULL; p_hotkey++ ) { @@ -262,7 +262,7 @@ static void *Thread( void *p_data ) DispatchMessage( &message ); /* Unregistering of Hotkeys */ - for( struct hotkey *p_hotkey = p_intf->p_libvlc->p_hotkeys; + for( const struct hotkey *p_hotkey = p_intf->p_libvlc->p_hotkeys; p_hotkey->psz_action != NULL; p_hotkey++ ) { @@ -296,7 +296,7 @@ LRESULT CALLBACK WMHOTKEYPROC( HWND hwnd, UINT uMsg, WPARAM wParam, LONG_PTR ret = GetWindowLongPtr( hwnd, GWLP_USERDATA ); intf_thread_t *p_intf = (intf_thread_t*)ret; - struct hotkey *p_hotkeys = p_intf->p_libvlc->p_hotkeys; + const struct hotkey *p_hotkeys = p_intf->p_libvlc->p_hotkeys; if( !GlobalGetAtomNameA( wParam, psz_atomName, sizeof( psz_atomName ) ) ) -- 2.39.2