Commit 81b7dec4 by Russell Belfer

Fix some compile warnings and trailing whitespace

parent d82d66c9
...@@ -212,6 +212,7 @@ static int conflict_name_cmp(const void *a, const void *b) ...@@ -212,6 +212,7 @@ static int conflict_name_cmp(const void *a, const void *b)
/** /**
* TODO: enable this when resolving case insensitive conflicts * TODO: enable this when resolving case insensitive conflicts
*/ */
#if 0
static int conflict_name_icmp(const void *a, const void *b) 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_a = a;
...@@ -231,6 +232,7 @@ static int conflict_name_icmp(const void *a, const void *b) ...@@ -231,6 +232,7 @@ static int conflict_name_icmp(const void *a, const void *b)
return strcasecmp(name_a->ours, name_b->ours); return strcasecmp(name_a->ours, name_b->ours);
} }
#endif
static int reuc_srch(const void *key, const void *array_member) static int reuc_srch(const void *key, const void *array_member)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment