diff options
Diffstat (limited to 'git2d')
-rw-r--r-- | git2d/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git2d/main.c b/git2d/main.c index 1895864..7671b72 100644 --- a/git2d/main.c +++ b/git2d/main.c @@ -145,7 +145,7 @@ session(void *_conn) int count = 0; git_oid oid; - while (count < 5 && git_revwalk_next(&oid, walker) == 0) { + while (count < 3 && git_revwalk_next(&oid, walker) == 0) { git_commit *commit = NULL; if (git_commit_lookup(&commit, repo, &oid) != 0) break; |