diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-06-03 10:56:51 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-06-03 10:56:51 +0200 |
commit | 3a53257032a0df8aa5f3b31f14a8e6f4e1f07595 (patch) | |
tree | 23d16979c6ee884220afbe148b32981338f7f690 /src/gui/curses/gui-curses-window.c | |
parent | 2b1d7df86c745367cfdf4de13629790197b523b3 (diff) | |
download | weechat-3a53257032a0df8aa5f3b31f14a8e6f4e1f07595.zip |
Add "const" keyword for some "char *" function arguments (core and plugins API)
Diffstat (limited to 'src/gui/curses/gui-curses-window.c')
-rw-r--r-- | src/gui/curses/gui-curses-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/curses/gui-curses-window.c b/src/gui/curses/gui-curses-window.c index d92d1052a..8420398b1 100644 --- a/src/gui/curses/gui-curses-window.c +++ b/src/gui/curses/gui-curses-window.c @@ -158,7 +158,7 @@ gui_window_objects_free (struct t_gui_window *window, int free_separator, */ int -gui_window_utf_char_valid (char *utf_char) +gui_window_utf_char_valid (const char *utf_char) { /* 146 or 0x7F are not valid */ if ((((unsigned char)(utf_char[0]) == 146) @@ -175,7 +175,7 @@ gui_window_utf_char_valid (char *utf_char) */ void -gui_window_wprintw (WINDOW *window, char *data, ...) +gui_window_wprintw (WINDOW *window, const char *data, ...) { va_list argptr; static char buf[4096]; |