Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
abfdb004
Commit
abfdb004
authored
Aug 20, 2009
by
Pierre
Browse files
caca: Fix a warning about unsigned.
parent
b5ebc218
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/video_output/caca.c
View file @
abfdb004
...
...
@@ -336,8 +336,8 @@ static void Refresh(vout_display_t *vd)
caca_refresh_display
(
sys
->
dp
);
/* */
const
int
width
=
caca_get_display_width
(
sys
->
dp
);
const
int
height
=
caca_get_display_height
(
sys
->
dp
);
const
unsigned
width
=
caca_get_display_width
(
sys
->
dp
);
const
unsigned
height
=
caca_get_display_height
(
sys
->
dp
);
if
(
width
!=
vd
->
cfg
->
display
.
width
||
height
!=
vd
->
cfg
->
display
.
height
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment