Skip to content

Commit

Permalink
kconfig: add static qualifiers to fix gconf warnings
Browse files Browse the repository at this point in the history
Add "static" to functions that are locally used in gconf.c
This fixes some "no previous prototype for ..." warnings.

Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
masahir0y committed Dec 28, 2018
1 parent cbafbf7 commit 9abe423
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions scripts/kconfig/gconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static void conf_changed(void);

/* Helping/Debugging Functions */

const char *dbg_sym_flags(int val)
static const char *dbg_sym_flags(int val)
{
static char buf[256];

Expand Down Expand Up @@ -106,8 +106,8 @@ const char *dbg_sym_flags(int val)
return buf;
}

void replace_button_icon(GladeXML * xml, GdkDrawable * window,
GtkStyle * style, gchar * btn_name, gchar ** xpm)
static void replace_button_icon(GladeXML *xml, GdkDrawable *window,
GtkStyle *style, gchar *btn_name, gchar **xpm)
{
GdkPixmap *pixmap;
GdkBitmap *mask;
Expand All @@ -125,7 +125,7 @@ void replace_button_icon(GladeXML * xml, GdkDrawable * window,
}

/* Main Window Initialization */
void init_main_window(const gchar * glade_file)
static void init_main_window(const gchar *glade_file)
{
GladeXML *xml;
GtkWidget *widget;
Expand Down Expand Up @@ -187,7 +187,7 @@ void init_main_window(const gchar * glade_file)
gtk_widget_show(main_wnd);
}

void init_tree_model(void)
static void init_tree_model(void)
{
gint i;

Expand Down Expand Up @@ -217,7 +217,7 @@ void init_tree_model(void)
model1 = GTK_TREE_MODEL(tree1);
}

void init_left_tree(void)
static void init_left_tree(void)
{
GtkTreeView *view = GTK_TREE_VIEW(tree1_w);
GtkCellRenderer *renderer;
Expand Down Expand Up @@ -259,7 +259,7 @@ static void renderer_edited(GtkCellRendererText * cell,
const gchar * path_string,
const gchar * new_text, gpointer user_data);

void init_right_tree(void)
static void init_right_tree(void)
{
GtkTreeView *view = GTK_TREE_VIEW(tree2_w);
GtkCellRenderer *renderer;
Expand Down Expand Up @@ -1209,8 +1209,8 @@ static GtkTreeIter found;
/*
* Find a menu in the GtkTree starting at parent.
*/
GtkTreeIter *gtktree_iter_find_node(GtkTreeIter * parent,
struct menu *tofind)
static GtkTreeIter *gtktree_iter_find_node(GtkTreeIter *parent,
struct menu *tofind)
{
GtkTreeIter iter;
GtkTreeIter *child = &iter;
Expand Down Expand Up @@ -1421,7 +1421,7 @@ static void display_list(void)
tree = tree2;
}

void fixup_rootmenu(struct menu *menu)
static void fixup_rootmenu(struct menu *menu)
{
struct menu *child;
static int menu_cnt = 0;
Expand Down

0 comments on commit 9abe423

Please sign in to comment.