aboutsummaryrefslogtreecommitdiff
path: root/src/lib.c
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-08-24 18:04:57 -0300
committerEuAndreh <eu@euandre.org>2021-08-24 18:04:57 -0300
commit03204cee8d6de02fbd6acc52bd93fa01218bea63 (patch)
treee1c920ee6fde90e2a88ec2935e86d71bed60046d /src/lib.c
parentsrc/lib.{c,h}: Make args to gistatic_main() const (diff)
downloadgistatic-03204cee8d6de02fbd6acc52bd93fa01218bea63.tar.gz
gistatic-03204cee8d6de02fbd6acc52bd93fa01218bea63.tar.xz
src/lib.c: Stick to 80 columns
Diffstat (limited to 'src/lib.c')
-rw-r--r--src/lib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib.c b/src/lib.c
index fdccc2b..572d708 100644
--- a/src/lib.c
+++ b/src/lib.c
@@ -1624,7 +1624,8 @@ static int repo_refs_tags_each(
if (git_commit_lookup(&commit, repo, oid)) {
const git_error *const error = git_error_last();
assert(error);
- logerrs("git_commit_lookup(", name, ")", error->message, __LINE__);
+ logerrs("git_commit_lookup(", name, ")", error->message,
+ __LINE__);
ret = -1;
goto cleanup;
}