Commit f222b7f4 authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: surround dbg_sym_flags with #ifdef DEBUG to fix gconf warning

Fix the following warning:

  no previous prototype for ‘dbg_sym_flags’ [-Wmissing-prototypes]
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 3b541978
...@@ -75,7 +75,7 @@ static gchar **fill_row(struct menu *menu); ...@@ -75,7 +75,7 @@ static gchar **fill_row(struct menu *menu);
static void conf_changed(void); static void conf_changed(void);
/* Helping/Debugging Functions */ /* Helping/Debugging Functions */
#ifdef DEBUG
static const char *dbg_sym_flags(int val) static const char *dbg_sym_flags(int val)
{ {
static char buf[256]; static char buf[256];
...@@ -105,6 +105,7 @@ static const char *dbg_sym_flags(int val) ...@@ -105,6 +105,7 @@ static const char *dbg_sym_flags(int val)
return buf; return buf;
} }
#endif
static void replace_button_icon(GladeXML *xml, GdkDrawable *window, static void replace_button_icon(GladeXML *xml, GdkDrawable *window,
GtkStyle *style, gchar *btn_name, gchar **xpm) GtkStyle *style, gchar *btn_name, gchar **xpm)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment