mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-21 09:49:58 +00:00
Fix some compile warnings and trailing whitespace
This commit is contained in:
parent
d82d66c96d
commit
81b7dec4ee
22
src/index.c
22
src/index.c
@ -193,44 +193,46 @@ static int conflict_name_cmp(const void *a, const void *b)
|
||||
{
|
||||
const git_index_name_entry *name_a = a;
|
||||
const git_index_name_entry *name_b = b;
|
||||
|
||||
|
||||
if (name_a->ancestor && !name_b->ancestor)
|
||||
return 1;
|
||||
|
||||
|
||||
if (!name_a->ancestor && name_b->ancestor)
|
||||
return -1;
|
||||
|
||||
|
||||
if (name_a->ancestor)
|
||||
return strcmp(name_a->ancestor, name_b->ancestor);
|
||||
|
||||
|
||||
if (!name_a->ours || !name_b->ours)
|
||||
return 0;
|
||||
|
||||
|
||||
return strcmp(name_a->ours, name_b->ours);
|
||||
}
|
||||
|
||||
/**
|
||||
* TODO: enable this when resolving case insensitive conflicts
|
||||
*/
|
||||
#if 0
|
||||
static int conflict_name_icmp(const void *a, const void *b)
|
||||
{
|
||||
const git_index_name_entry *name_a = a;
|
||||
const git_index_name_entry *name_b = b;
|
||||
|
||||
|
||||
if (name_a->ancestor && !name_b->ancestor)
|
||||
return 1;
|
||||
|
||||
|
||||
if (!name_a->ancestor && name_b->ancestor)
|
||||
return -1;
|
||||
|
||||
|
||||
if (name_a->ancestor)
|
||||
return strcasecmp(name_a->ancestor, name_b->ancestor);
|
||||
|
||||
|
||||
if (!name_a->ours || !name_b->ours)
|
||||
return 0;
|
||||
|
||||
|
||||
return strcasecmp(name_a->ours, name_b->ours);
|
||||
}
|
||||
#endif
|
||||
|
||||
static int reuc_srch(const void *key, const void *array_member)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user