Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-10-28 16:22:37 +0400
committerBen Straub <bs@github.com>2013-10-28 16:22:37 +0400
commita7d28f40a2a01382b76c55ca0a0672c177adaf69 (patch)
treebf6fa0250fc3ee3950a2221c7150037472423db4 /src/blame_git.c
parent7f6db0ad121a3fdfdb9249c71b6650f771f4f6b3 (diff)
:heart: bool
Diffstat (limited to 'src/blame_git.c')
-rw-r--r--src/blame_git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blame_git.c b/src/blame_git.c
index 4df65139a..2b02443de 100644
--- a/src/blame_git.c
+++ b/src/blame_git.c
@@ -602,7 +602,7 @@ void git_blame__like_git(git_blame *blame, uint32_t opt)
/* Take responsibility for the remaining entries */
for (ent = blame->ent; ent; ent = ent->next) {
if (same_suspect(ent->suspect, suspect)) {
- ent->guilty = 1;
+ ent->guilty = true;
ent->is_boundary = !git_oid_cmp(
git_commit_id(suspect->commit),
&blame->options.oldest_commit);