commit 232c968ed9bb922f99ef802f450b9c38ab156da6
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Mar 13 19:33:06 2018 +0200
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Mar 13 19:33:51 2018 +0200
textscreen: Make help_url member const in txt_window_s
---
textscreen/txt_window.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/textscreen/txt_window.h b/textscreen/txt_window.h
index 55f9980f..4424055c 100644
--- a/textscreen/txt_window.h
+++ b/textscreen/txt_window.h
@@ -88,7 +88,7 @@ struct txt_window_s
// URL of a webpage with help about this window. If set, a help key
// indicator is shown while this window is active.
- char *help_url;
+ const char *help_url;
};
/**