Code

screen_queue: fix indentation after #ifndef block
[ncmpc.git] / src / title_bar.c
index 5fa0ca58a46402b9086eec3b99c84e664e96b694..7fdce0c21dd9a0f63fa83106bf8d27a65943ffd4 100644 (file)
@@ -1,5 +1,5 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2009 The Music Player Daemon Project
+ * (c) 2004-2010 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
  *
  * This program is free software; you can redistribute it and/or modify
@@ -23,6 +23,8 @@
 #include "i18n.h"
 #include "charset.h"
 
+#include "config.h"
+
 #include <mpd/client.h>
 
 #include <glib.h>
@@ -35,7 +37,7 @@ static void
 print_hotkey(WINDOW *w, command_t cmd, const char *label)
 {
        colors_use(w, COLOR_TITLE_BOLD);
-       waddstr(w, get_key_names(cmd, FALSE));
+       waddstr(w, get_key_names(cmd, false));
        colors_use(w, COLOR_TITLE);
        waddch(w, ':');
        waddstr(w, label);