fix off-by-one in blame_open()
diff --git a/lib/blame.c b/lib/blame.c
index 6753bf2..d1fe9d3 100644
--- a/lib/blame.c
+++ b/lib/blame.c
@@ -258,7 +258,7 @@ blame_open(struct got_blame **blamep, const char *path,
}
/* Annotate remaining non-annotated lines with last commit. */
- for (lineno = 1; lineno < blame->nlines; lineno++)
+ for (lineno = 1; lineno <= blame->nlines; lineno++)
annotate_line(blame, lineno, id);
done: