mirror of
https://git.zx2c4.com/cgit
synced 2025-08-01 08:34:36 +02:00
White space around control verbs.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
53bc747d31
commit
bdae1d8a8d
16 changed files with 42 additions and 42 deletions
4
cgit.c
4
cgit.c
|
@ -315,7 +315,7 @@ static void querystring_cb(const char *name, const char *value)
|
|||
ctx.qry.name = xstrdup(value);
|
||||
} else if (!strcmp(name, "mimetype")) {
|
||||
ctx.qry.mimetype = xstrdup(value);
|
||||
} else if (!strcmp(name, "s")){
|
||||
} else if (!strcmp(name, "s")) {
|
||||
ctx.qry.sort = xstrdup(value);
|
||||
} else if (!strcmp(name, "showmsg")) {
|
||||
ctx.qry.showmsg = atoi(value);
|
||||
|
@ -653,7 +653,7 @@ void print_repolist(FILE *f, struct cgit_repolist *list, int start)
|
|||
{
|
||||
int i;
|
||||
|
||||
for(i = start; i < list->count; i++)
|
||||
for (i = start; i < list->count; i++)
|
||||
print_repo(f, &list->repos[i]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue