Commit 244fb9d5 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

Qt4: Fix a warning.

WId is almost always an integer (except for Symbian)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent e043658d
...@@ -103,7 +103,7 @@ WId VideoWidget::request( int *pi_x, int *pi_y, ...@@ -103,7 +103,7 @@ WId VideoWidget::request( int *pi_x, int *pi_y,
if( stable ) if( stable )
{ {
msg_Dbg( p_intf, "embedded video already in use" ); msg_Dbg( p_intf, "embedded video already in use" );
return NULL; return 0;
} }
if( b_keep_size ) if( b_keep_size )
{ {
......
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