Commit 032a8c2d by Edward Thomson

util: our strcmp cb should use git__strcmp

parent 156e0899
...@@ -623,12 +623,12 @@ int git__bsearch_r( ...@@ -623,12 +623,12 @@ int git__bsearch_r(
*/ */
int git__strcmp_cb(const void *a, const void *b) int git__strcmp_cb(const void *a, const void *b)
{ {
return strcmp((const char *)a, (const char *)b); return git__strcmp((const char *)a, (const char *)b);
} }
int git__strcasecmp_cb(const void *a, const void *b) int git__strcasecmp_cb(const void *a, const void *b)
{ {
return strcasecmp((const char *)a, (const char *)b); return git__strcasecmp((const char *)a, (const char *)b);
} }
int git__parse_bool(int *out, const char *value) int git__parse_bool(int *out, const char *value)
......
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