commit 5da4c0f8c9d650fb453e89ebf9a08883d6d6ecc1 from: Stefan Sperling date: Wed May 09 18:34:11 2018 UTC fix upper limit of number of commits in log view commit - 520426b0547120abac809e7dd56d94e088d56a60 commit + 5da4c0f8c9d650fb453e89ebf9a08883d6d6ecc1 blob - 730c01033cb9dd22d48a5b1b81dc45cbd32e399e blob + 05264b31220545ef2b839e448e4714330439e160 --- tog/tog.c +++ tog/tog.c @@ -384,7 +384,7 @@ show_log_view(struct got_object_id *start_id, struct g do { if (refetch_commits) { free_commits(&commits); - err = fetch_commits(&commits, obj, id, repo, LINES); + err = fetch_commits(&commits, obj, id, repo, LINES - 1); refetch_commits = 0; if (err) goto done;