summary refs log tree commit diff stats
path: root/src/common/url.c
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-08-01 16:39:49 +0100
committerDiogo Sousa <diogogsousa@gmail.com>2013-08-01 16:39:49 +0100
commit6ec7bfad3052bd40d5022a38092efcce053bc8cf (patch)
tree41d52ce7de86d8dd77f66544c19cf9c8bb93a31d /src/common/url.c
parent0e76283c9ad642d85d62e025d834b75dc15a72dd (diff)
Indentation fix.
Diffstat (limited to 'src/common/url.c')
-rw-r--r--src/common/url.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/url.c b/src/common/url.c
index be2cd788..4435da60 100644
--- a/src/common/url.c
+++ b/src/common/url.c
@@ -206,13 +206,13 @@ url_check_word (const char *word)
 		gboolean (*match) (const char *word, int *start, int *end);
 		int type;
 	} m[] = {
-       { match_url,     WORD_URL },
-       { match_email,   WORD_EMAIL },
-       { match_nick,    WORD_NICK },
-       { match_channel, WORD_CHANNEL },
-       { match_host6,   WORD_HOST6 },
-       { match_host,    WORD_HOST },
-       { match_path,    WORD_PATH },
+	   { match_url,     WORD_URL },
+	   { match_email,   WORD_EMAIL },
+	   { match_nick,    WORD_NICK },
+	   { match_channel, WORD_CHANNEL },
+	   { match_host6,   WORD_HOST6 },
+	   { match_host,    WORD_HOST },
+	   { match_path,    WORD_PATH },
 	   { NULL,          0}
 	};
 	int i;