Code

screen_interface: make cols/rows unsigned
[ncmpc.git] / src / screen_lyrics.c
index b937e79bc3792ca16030d766178989d746faec9c..0bce7c4c54bdd702afcbc74a435c37f546c34824 100644 (file)
@@ -269,13 +269,13 @@ screen_lyrics_reload(void)
 }
 
 static void
-lyrics_screen_init(WINDOW *w, int cols, int rows)
+lyrics_screen_init(WINDOW *w, unsigned cols, unsigned rows)
 {
        screen_text_init(&text, w, cols, rows);
 }
 
 static void
-lyrics_resize(int cols, int rows)
+lyrics_resize(unsigned cols, unsigned rows)
 {
        screen_text_resize(&text, cols, rows);
 }