From: Clément Stenac Date: Mon, 27 Jun 2005 21:30:44 +0000 (+0000) Subject: Fix warning X-Git-Tag: 0.8.4~1382 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=09102a649c32d10abc47881f191dab22e8cc9da2;p=vlc Fix warning --- diff --git a/mozilla/vlcshell.cpp b/mozilla/vlcshell.cpp index c7c3c9f908..0227c4b0dc 100644 --- a/mozilla/vlcshell.cpp +++ b/mozilla/vlcshell.cpp @@ -92,8 +92,8 @@ # define VOUT_PLUGINS "xvideo,x11,dummy" # define AOUT_PLUGINS "oss,dummy" -static int i_previous_height = -1; -static int i_previous_width = -1; +static unsigned int i_previous_height = 100000; +static unsigned int i_previous_width = 100000; static void Redraw( Widget w, XtPointer closure, XEvent *event ); static void Resize( Widget w, XtPointer closure, XEvent *event );