Commit a64db92b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Display size cannot be negative

parent 7b29ef8d
...@@ -387,8 +387,8 @@ VLC_EXPORT( void, vout_display_GetDefaultDisplaySize, (int *width, int *height, ...@@ -387,8 +387,8 @@ VLC_EXPORT( void, vout_display_GetDefaultDisplaySize, (int *width, int *height,
typedef struct { typedef struct {
int x; int x;
int y; int y;
int width; unsigned width;
int height; unsigned height;
} vout_display_place_t; } vout_display_place_t;
/** /**
......
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