diff options
author | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:29 +0200 |
commit | 76a8fab4adc293982f355609b89dde88d5f355e0 (patch) | |
tree | b8fe58ce54cade4122402c57328a9691064b2590 /src/wreadln.c | |
parent | 0b3bcb6c7f1bb4a633896b8a9936e498570ef8e1 (diff) | |
download | mpd-76a8fab4adc293982f355609b89dde88d5f355e0.tar.gz mpd-76a8fab4adc293982f355609b89dde88d5f355e0.tar.xz mpd-76a8fab4adc293982f355609b89dde88d5f355e0.zip |
fix function prototypes
Add missing prototypes, and fix wrong prototypes. Convert lots of
functions to "static" when they are only used within the current
source file.
Diffstat (limited to '')
-rw-r--r-- | src/wreadln.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wreadln.c b/src/wreadln.c index e49308a3f..f6b848cdd 100644 --- a/src/wreadln.c +++ b/src/wreadln.c @@ -123,7 +123,7 @@ static inline void drawline(gint cursor, /* libcurses version */ -gchar * +static gchar * _wreadln(WINDOW *w, const gchar *prompt, const gchar *initial_value, @@ -475,7 +475,7 @@ static inline void drawline(gint cursor, /* libcursesw version */ -gchar * +static gchar * _wreadln(WINDOW *w, const gchar *prompt, const gchar *initial_value, |