X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fstatus_bar.c;h=2803b28745a8f1214ad69759402f781a89bb2277;hb=d1e3e68dd6bd0591fce26ed295774063a452b0a6;hp=4ccb6e3e42880fda3e9987f1192e00efb08227fc;hpb=6a14b6d36bb4b4edecb8c5844a062e4c48270cce;p=ncmpc.git diff --git a/src/status_bar.c b/src/status_bar.c index 4ccb6e3..2803b28 100644 --- a/src/status_bar.c +++ b/src/status_bar.c @@ -101,11 +101,6 @@ status_bar_paint(struct status_bar *p, const struct mpd_status *status, WINDOW *w = p->window.w; enum mpd_state state; int elapsedTime = 0; -#ifdef NCMPC_MINI - static char bitrate[1]; -#else - char bitrate[16]; -#endif const char *str = NULL; int x = 0; char buffer[p->window.cols * 4 + 1]; @@ -146,6 +141,11 @@ status_bar_paint(struct status_bar *p, const struct mpd_status *status, if (state == MPD_STATE_PLAY || state == MPD_STATE_PAUSE) { int total_time = mpd_status_get_total_time(status); if (total_time > 0) { +#ifdef NCMPC_MINI + static const char bitrate[1]; +#else + char bitrate[16]; +#endif char elapsed_string[32], duration_string[32]; /*checks the conf to see whether to display elapsed or remaining time */