pinosaur
/
surf.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e68af1
)
Continue making chars const
author
Quentin Rameau
<quinq@fifth.space>
Sun, 22 Nov 2015 01:22:38 +0000
(
02:22
+0100)
committer
Quentin Rameau
<quinq@fifth.space>
Sun, 22 Nov 2015 01:22:38 +0000
(
02:22
+0100)
surf.c
patch
|
blob
|
history
diff --git
a/surf.c
b/surf.c
index
d8a2ef6
..
faf712f
100644
(file)
--- a/
surf.c
+++ b/
surf.c
@@
-394,9
+394,9
@@
loaduri(Client *c, const Arg *a)
const char *
geturi(Client *c)
{
- char *uri;
+ c
onst c
har *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;
}