Reformat
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 26 Jun 2013 12:29:58 +0000 (14:29 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 26 Jun 2013 12:29:58 +0000 (14:29 +0200)
src/html_parser.cpp

index 01cf973..804c2a1 100644 (file)
@@ -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]);