From b207fb98c8f3d5b335780141f667404b3d632810 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 19 Oct 2011 21:46:22 +0200 Subject: interface: Rename status to interface_set_status --- src/interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interface.c') diff --git a/src/interface.c b/src/interface.c index 3e87046..ffaf4a8 100644 --- a/src/interface.c +++ b/src/interface.c @@ -51,7 +51,7 @@ interface_resize(gpointer data) mvwin(msg_win, height - H_MSG_BOX, 0); /* NULL := display old status */ - status(NULL); + interface_set_status(NULL); print_sink_list(); return TRUE; } @@ -332,7 +332,7 @@ interface_clear(void) } void -status(const gchar *msg) +interface_set_status(const gchar *msg) { static gchar *save = NULL; if (msg != NULL) { -- cgit