aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.c
diff options
context:
space:
mode:
authorGravatar Jason A. Donenfeld <Jason@zx2c4.com>2013-03-04 13:21:33 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2013-03-04 23:12:54 (JST)
commitbdae1d8a8d39206ac75ab86f8e9ef53b2f29432e (patch)
tree683306f79bd96a45566879acd21e5ff085120acd /cgit.c
parent53bc747d311d18642fa3ad0cc0de34f3899ed1f4 (diff)
downloadcgit-bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e.zip
cgit-bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e.tar.gz
White space around control verbs.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cgit.c b/cgit.c
index 0807258..ade85ea 100644
--- a/cgit.c
+++ b/cgit.c
@@ -315,7 +315,7 @@ static void querystring_cb(const char *name, const char *value)
315 ctx.qry.name = xstrdup(value); 315 ctx.qry.name = xstrdup(value);
316 } else if (!strcmp(name, "mimetype")) { 316 } else if (!strcmp(name, "mimetype")) {
317 ctx.qry.mimetype = xstrdup(value); 317 ctx.qry.mimetype = xstrdup(value);
318 } else if (!strcmp(name, "s")){ 318 } else if (!strcmp(name, "s")) {
319 ctx.qry.sort = xstrdup(value); 319 ctx.qry.sort = xstrdup(value);
320 } else if (!strcmp(name, "showmsg")) { 320 } else if (!strcmp(name, "showmsg")) {
321 ctx.qry.showmsg = atoi(value); 321 ctx.qry.showmsg = atoi(value);
@@ -653,7 +653,7 @@ void print_repolist(FILE *f, struct cgit_repolist *list, int start)
653{ 653{
654 int i; 654 int i;
655 655
656 for(i = start; i < list->count; i++) 656 for (i = start; i < list->count; i++)
657 print_repo(f, &list->repos[i]); 657 print_repo(f, &list->repos[i]);
658} 658}
659 659