Code

screen_browser: fix crash on "jump" (hotkey ".")
[ncmpc.git] / src / song_paint.c
index b0c452b8472d5b58c5c66f3206b1d9fb4aa18410..c3ae757bda89a7bad7ac57e457cd5e274cd0b43b 100644 (file)
 #include <string.h>
 
 void
-paint_song_row(WINDOW *w, G_GNUC_UNUSED unsigned y, unsigned width,
+paint_song_row(WINDOW *w, gcc_unused unsigned y, unsigned width,
               bool selected, bool highlight, const struct mpd_song *song,
-              G_GNUC_UNUSED struct hscroll *hscroll)
+              gcc_unused struct hscroll *hscroll, const char *format)
 {
        char buffer[width * 4];
 
-       strfsong(buffer, sizeof(buffer), options.list_format, song);
+       strfsong(buffer, sizeof(buffer), format, song);
        row_paint_text(w, width, highlight ? COLOR_LIST_BOLD : COLOR_LIST,
                       selected, buffer);