Commit f4bb851a authored by Laurent Aimar's avatar Laurent Aimar Committed by Jean-Baptiste Kempf

Removed wrong casts in msw.

(cherry picked from commit 9064f473)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent c08e2d92
...@@ -387,9 +387,9 @@ static void *EventThread( void *p_this ) ...@@ -387,9 +387,9 @@ static void *EventThread( void *p_this )
if( pwz_title ) if( pwz_title )
{ {
SetWindowTextW( p_event->hwnd, (LPCTSTR)pwz_title ); SetWindowTextW( p_event->hwnd, pwz_title );
if( p_event->hfswnd ) if( p_event->hfswnd )
SetWindowTextW( p_event->hfswnd, (LPCTSTR)pwz_title ); SetWindowTextW( p_event->hfswnd, pwz_title );
free( pwz_title ); free( pwz_title );
} }
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment