diff options
author | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:28 +0200 |
commit | 0b3bcb6c7f1bb4a633896b8a9936e498570ef8e1 (patch) | |
tree | 611b143eb0834c892246f8b31311e9224977c952 /src/screen_utils.c | |
parent | 1f0ff952055c920c8671a1587c622e4df8b4a99d (diff) | |
download | mpd-0b3bcb6c7f1bb4a633896b8a9936e498570ef8e1.tar.gz mpd-0b3bcb6c7f1bb4a633896b8a9936e498570ef8e1.tar.xz mpd-0b3bcb6c7f1bb4a633896b8a9936e498570ef8e1.zip |
const pointers
Convert pointers to const whenever it is possible. Fixes all those
-Wconst warnings.
Diffstat (limited to '')
-rw-r--r-- | src/screen_utils.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/screen_utils.c b/src/screen_utils.c index a5ccd58f4..9b3bfa266 100644 --- a/src/screen_utils.c +++ b/src/screen_utils.c @@ -48,7 +48,7 @@ screen_bell(void) } int -screen_getch(WINDOW *w, char *prompt) +screen_getch(WINDOW *w, const char *prompt) { int key = -1; int prompt_len = strlen(prompt); @@ -81,8 +81,8 @@ screen_getch(WINDOW *w, char *prompt) char * screen_readln(WINDOW *w, - char *prompt, - char *value, + const char *prompt, + const char *value, GList **history, GCompletion *gcmp) { @@ -97,13 +97,13 @@ screen_readln(WINDOW *w, } char * -screen_getstr(WINDOW *w, char *prompt) +screen_getstr(WINDOW *w, const char *prompt) { return screen_readln(w, prompt, NULL, NULL, NULL); } char * -screen_read_password(WINDOW *w, char *prompt) +screen_read_password(WINDOW *w, const char *prompt) { if(w == NULL) { @@ -155,7 +155,7 @@ screen_find(screen_t *screen, { int reversed = 0; int retval = 0; - char *prompt = FIND_PROMPT; + const char *prompt = FIND_PROMPT; char *value = options.find_show_last_pattern ? (char *) -1 : NULL; if (findcmd == CMD_LIST_RFIND || findcmd == CMD_LIST_RFIND_NEXT) { @@ -255,7 +255,7 @@ screen_display_completion_list(screen_t *screen, GList *list) } void -set_xterm_title(char *format, ...) +set_xterm_title(const char *format, ...) { /* the current xterm title exists under the WM_NAME property */ /* and can be retreived with xprop -id $WINDOWID */ |