Commit abfdb004 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

caca: Fix a warning about unsigned.

parent b5ebc218
...@@ -336,8 +336,8 @@ static void Refresh(vout_display_t *vd) ...@@ -336,8 +336,8 @@ static void Refresh(vout_display_t *vd)
caca_refresh_display(sys->dp); caca_refresh_display(sys->dp);
/* */ /* */
const int width = caca_get_display_width(sys->dp); const unsigned width = caca_get_display_width(sys->dp);
const int height = caca_get_display_height(sys->dp); const unsigned height = caca_get_display_height(sys->dp);
if (width != vd->cfg->display.width || if (width != vd->cfg->display.width ||
height != vd->cfg->display.height) height != vd->cfg->display.height)
......
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