From 0f171f978cf7ff44c4880519974b07e20e86bc1a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 2 Oct 2008 19:11:15 +0200 Subject: [PATCH] screen_browser: added constant playlist_format Moved the format string for playlist files to the constant "playlist_format". --- src/screen_browser.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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; } -- 2.30.2