about summary refs log tree commit diff
path: root/surf.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2015-11-22 02:22:38 +0100
committerQuentin Rameau <quinq@fifth.space>2015-11-22 02:22:38 +0100
commit2fb122c01202e7b8f2b31f964daee19b86f4d433 (patch)
tree41a31f3c12257a866cd118122113d0d8c41aa210 /surf.c
parentCorrect and simplify buttonreleased() gdk event (diff)
downloadsurf-2fb122c01202e7b8f2b31f964daee19b86f4d433.tar.gz
surf-2fb122c01202e7b8f2b31f964daee19b86f4d433.tar.bz2
surf-2fb122c01202e7b8f2b31f964daee19b86f4d433.zip
Continue making chars const
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/surf.c b/surf.c
index d8a2ef6..faf712f 100644
--- a/surf.c
+++ b/surf.c
@@ -394,9 +394,9 @@ loaduri(Client *c, const Arg *a)
 const char *
 geturi(Client *c)
 {
-	char *uri;
+	const char *uri;
 
-	if (!(uri = (char *)webkit_web_view_get_uri(c->view)))
+	if (!(uri = webkit_web_view_get_uri(c->view)))
 		uri = "about:blank";
 	return uri;
 }