limit line length to 79 characters

This commit is contained in:
josch
2014-09-25 19:38:48 +02:00
parent 32fcb30572
commit dcce69e66d
13 changed files with 29 additions and 15 deletions

View File

@@ -114,7 +114,8 @@ char **stringv_find(char *string, char *token, int limit)
break;
count++;
results = (char **)realloc((void *)results, sizeof(char *) * count + 1);
results =
(char **)realloc((void *)results, sizeof(char *) * count + 1);
results[count - 1] = pos;
}