changeset 1031:a20060091063

plugin links: whitespace
author David Demelier <markand@malikania.fr>
date Tue, 02 Mar 2021 20:01:00 +0100
parents 509bcfb14670
children 06b35c32a179
files plugins/links/links.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/links/links.c	Tue Mar 02 19:34:00 2021 +0100
+++ b/plugins/links/links.c	Tue Mar 02 20:01:00 2021 +0100
@@ -83,7 +83,7 @@
 	regmatch_t match[2];
 	char *ret = NULL;
 
-	if (regcomp(&regex, "<title>([^<]+)<\\/title>",	REG_EXTENDED | REG_ICASE) != 0)
+	if (regcomp(&regex, "<title>([^<]+)<\\/title>", REG_EXTENDED | REG_ICASE) != 0)
 		return NULL;
 
 	if (regexec(&regex, req->buf, 2, match, 0) == 0) {