From: Max Kellermann Date: Thu, 2 Oct 2008 17:11:15 +0000 (+0200) Subject: screen_browser: added constant playlist_format X-Git-Tag: v0.12_alpha1~100 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0f171f978cf7ff44c4880519974b07e20e86bc1a;p=ncmpc.git screen_browser: added constant playlist_format Moved the format string for playlist files to the constant "playlist_format". --- diff --git a/src/screen_browser.c b/src/screen_browser.c index b322100..1350a56 100644 --- a/src/screen_browser.c +++ b/src/screen_browser.c @@ -28,13 +28,14 @@ #include -#define USE_OLD_LAYOUT #undef USE_OLD_ADD #define BUFSIZE 1024 #define HIGHLIGHT (0x01) +static const char playlist_format[] = "*%s*"; + /* clear the highlight flag for all items in the filelist */ static void clear_highlights(mpdclient_filelist_t *fl) @@ -149,11 +150,7 @@ browser_lw_callback(unsigned idx, int *highlight, void *data) mpd_PlaylistFile *plf = entity->info.playlistFile; char *filename = utf8_to_locale(basename(plf->path)); -#ifdef USE_OLD_LAYOUT - g_snprintf(buf, BUFSIZE, "*%s*", filename); -#else - g_snprintf(buf, BUFSIZE, " %s", filename); -#endif + g_snprintf(buf, BUFSIZE, playlist_format, filename); g_free(filename); return buf; }