Code

screen_interface: make cols/rows unsigned
[ncmpc.git] / src / screen_artist.c
index f8d50d0c096def9358075320d970d75811e12992..2190cbbff54a7f3b4aed0068a47f9cb7d4c52df0 100644 (file)
@@ -289,7 +289,7 @@ reload_lists(struct mpdclient *c)
 }
 
 static void
-screen_artist_init(WINDOW *w, int cols, int rows)
+screen_artist_init(WINDOW *w, unsigned cols, unsigned rows)
 {
        browser.lw = list_window_init(w, cols, rows);
        browser.song_format = options.list_format;
@@ -313,7 +313,7 @@ screen_artist_open(struct mpdclient *c)
 }
 
 static void
-screen_artist_resize(int cols, int rows)
+screen_artist_resize(unsigned cols, unsigned rows)
 {
        list_window_resize(browser.lw, cols, rows);
 }