mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 00:43:41 +00:00
❤️ bool
This commit is contained in:
parent
7f6db0ad12
commit
a7d28f40a2
@ -42,11 +42,11 @@ typedef struct git_blame__entry {
|
||||
/* true if the suspect is truly guilty; false while we have not
|
||||
* checked if the group came from one of its parents.
|
||||
*/
|
||||
char guilty;
|
||||
bool guilty;
|
||||
|
||||
/* true if the entry has been scanned for copies in the current parent
|
||||
*/
|
||||
char scanned;
|
||||
bool scanned;
|
||||
|
||||
/* the line number of the first line of this group in the
|
||||
* suspect's file; internally all line numbers are 0 based.
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user