more constness.
[apps/madmutt.git] / xterm.c
diff --git a/xterm.c b/xterm.c
index 1b2d852..5ce9a81 100644 (file)
--- a/xterm.c
+++ b/xterm.c
@@ -7,14 +7,14 @@
 #include "xterm.h"
 #include "lib/str.h"
 
-void mutt_xterm_set_title (char *title) {
+void mutt_xterm_set_title (const char *title) {
   fputs ("\033]2;", stdout);
   fputs (NONULL (title), stdout);
   fputs ("\007", stdout);
   fflush (stdout);
 }
 
-void mutt_xterm_set_icon (char *name) {
+void mutt_xterm_set_icon (const char *name) {
   fputs ("\033]1;", stdout);
   fputs (NONULL (name), stdout);
   fputs ("\007", stdout);