Commit 101659be by Michael Schubert

Fix -Wmaybe-uninitialized warning

parent 69a402d4
......@@ -199,7 +199,7 @@ int git__strncmp(const char *a, const char *b, size_t sz)
int git__strncasecmp(const char *a, const char *b, size_t sz)
{
int al, bl;
int al = 0, bl = 0;
while (sz && *a && *b) {
al = (unsigned char)tolower(*a);
......
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