summaryrefslogtreecommitdiff
path: root/stagit.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2017-04-17 16:16:33 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2017-04-17 16:16:33 +0200
commit8e4eb29210cfefd01ce797e1818df86b3fe2dce6 (patch)
tree341e1c246cb34fb737a8f91058c883fbcc8aad29 /stagit.c
parent394d90b7bb878b54173a08bfe31402ddd29a2a54 (diff)
writeblobhtml: minor style fix
using len instead of the loop 'i' is slightly more clear
Diffstat (limited to 'stagit.c')
-rw-r--r--stagit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stagit.c b/stagit.c
index ca70214..23901c8 100644
--- a/stagit.c
+++ b/stagit.c
@@ -395,7 +395,7 @@ writeblobhtml(FILE *fp, const git_blob *blob)
prev = i + 1;
}
/* trailing data */
- if ((i - prev) > 0) {
+ if ((len - prev) > 0) {
n++;
fprintf(fp, nfmt, n, n, n);
xmlencode(fp, &s[prev], len - prev);