Code

status_bar: remove the status bar clock (option "display-time")
[ncmpc.git] / src / charset.c
index 61d7dac70dbcbb3ef4774b34c2c0189a8a914c29..61a34cbcf449a6dd0eb870cfc9dd239d83109cf5 100644 (file)
@@ -1,5 +1,5 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2010 The Music Player Daemon Project
+ * (c) 2004-2017 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
  *
  * This program is free software; you can redistribute it and/or modify
@@ -96,7 +96,8 @@ locale_width(const char *p)
 #endif
 }
 
-static inline unsigned
+gcc_unused
+static unsigned
 ascii_cut_width(char *p, unsigned max_width)
 {
        size_t length = strlen(p);
@@ -107,7 +108,8 @@ ascii_cut_width(char *p, unsigned max_width)
        return max_width;
 }
 
-static inline unsigned
+gcc_unused
+static unsigned
 narrow_cut_width(char *p, unsigned max_width)
 {
        size_t length = g_utf8_strlen(p, -1);
@@ -118,7 +120,8 @@ narrow_cut_width(char *p, unsigned max_width)
        return max_width;
 }
 
-static inline unsigned
+gcc_unused
+static unsigned
 wide_cut_width(char *p, unsigned max_width)
 {
        size_t length = g_utf8_strlen(p, -1);