license statements.
[apps/madmutt.git] / xterm.c
diff --git a/xterm.c b/xterm.c
index 1b2d852..b3f506c 100644 (file)
--- a/xterm.c
+++ b/xterm.c
@@ -4,17 +4,17 @@
  * please see the file GPL in the top level source directory.
  */
 #include <stdio.h>
+#include <lib-lib/str.h>
 #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);