summaryrefslogtreecommitdiff
path: root/src/path.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-06-08 15:22:01 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2015-06-08 15:22:01 +0200
commit82a7a24cf4a40ed94a4dc05ee2d91733e506ac1c (patch)
tree06798a23bb52838d90a77f818713f0963ba0f4b7 /src/path.c
parentc0d7999263000371e93f7ac1d6c25f32402facd5 (diff)
parentbad33a5dfb4bc0b2dab5d8c9736508429170b24a (diff)
downloadlibgit2-82a7a24cf4a40ed94a4dc05ee2d91733e506ac1c.tar.gz
Merge pull request #3165 from ethomson/downcase
Downcase
Diffstat (limited to 'src/path.c')
-rw-r--r--src/path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c
index 8f861e68e..02917607a 100644
--- a/src/path.c
+++ b/src/path.c
@@ -1473,7 +1473,7 @@ static int32_t next_hfs_char(const char **in, size_t *len)
* the ASCII range, which is perfectly fine, because the
* git folder name can only be composed of ascii characters
*/
- return tolower(codepoint);
+ return git__tolower(codepoint);
}
return 0; /* NULL byte -- end of string */
}