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,
typedef struct {
int x;
int y;
int width;
int height;
unsigned width;
unsigned height;
} 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