about summary refs log tree commit diff stats
path: root/xxxterm.c
diff options
context:
space:
mode:
Diffstat (limited to 'xxxterm.c')
-rw-r--r--xxxterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xxxterm.c b/xxxterm.c
index 378f7fa..5dd96dc 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -1486,7 +1486,7 @@ load_uri(struct tab *t, gchar *uri)
 		return;
 
 	/* Strip leading spaces. */
-	while(*uri && isspace(*uri))
+	while (*uri && isspace(*uri))
 		uri++;
 
 	if (strlen(uri) == 0) {
@@ -2368,7 +2368,7 @@ paste_uri(struct tab *t, struct karg *args)
 
 	if (p) {
 		uri = p;
-		while(*uri && isspace(*uri))
+		while (*uri && isspace(*uri))
 			uri++;
 		if (strlen(uri) == 0) {
 			show_oops(t, "empty paste buffer");