From: Adam Dickmeiss Date: Wed, 26 Jun 2013 12:29:58 +0000 (+0200) Subject: Reformat X-Git-Tag: v1.3.59~45 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=167d92e5c6533c592b5a204b638a606ff6e2b428;p=metaproxy-moved-to-github.git Reformat --- diff --git a/src/html_parser.cpp b/src/html_parser.cpp index 01cf973..804c2a1 100644 --- a/src/html_parser.cpp +++ b/src/html_parser.cpp @@ -75,7 +75,7 @@ static int skipName(const char *cp, char *dst) { int i; int j = 0; - for (i=0; cp[i] && !strchr(SPACECHR "/>=", cp[i]); i++) + for (i = 0; cp[i] && !strchr(SPACECHR "/>=", cp[i]); i++) if (j < TAG_MAX_LEN-1) { dst[j] = tolower(cp[j]);