From a64db92ba955f71439415f442032178d271d8c20 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 16 Aug 2009 12:28:33 +0300 Subject: [PATCH] Display size cannot be negative --- include/vlc_vout_display.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/vlc_vout_display.h b/include/vlc_vout_display.h index aa739aa1ac..090385d32e 100644 --- a/include/vlc_vout_display.h +++ b/include/vlc_vout_display.h @@ -387,8 +387,8 @@ VLC_EXPORT( void, vout_display_GetDefaultDisplaySize, (int *width, int *height, typedef struct { int x; int y; - int width; - int height; + unsigned width; + unsigned height; } vout_display_place_t; /** -- 2.39.2