diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2015-06-15 09:11:32 -0400 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2015-06-15 09:11:32 -0400 |
| commit | f621f087b2cb6f124a64a57ce2e0113dc92d53bb (patch) | |
| tree | 14b772556825babc21b153d7fb93dce1e2cabea8 /src/path.h | |
| parent | 2665fefa0f3af60c04b747e2f06c0d4ca6ea75f7 (diff) | |
| parent | 25bd0aaf20463fd9d00d882d39cb1cfec4aa6917 (diff) | |
| download | libgit2-f621f087b2cb6f124a64a57ce2e0113dc92d53bb.tar.gz | |
Merge pull request #3220 from libgit2/cmn/readdir
path: remove unnecessary readdir_r usage
Diffstat (limited to 'src/path.h')
| -rw-r--r-- | src/path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.h b/src/path.h index 14237cb46..5927a5381 100644 --- a/src/path.h +++ b/src/path.h @@ -407,7 +407,7 @@ extern void git_path_iconv_clear(git_path_iconv_t *ic); * pointer internal iconv buffer if rewrite happened. The `in` pointer * will be left unchanged if no rewrite was needed. */ -extern int git_path_iconv(git_path_iconv_t *ic, char **in, size_t *inlen); +extern int git_path_iconv(git_path_iconv_t *ic, const char **in, size_t *inlen); #endif /* GIT_USE_ICONV */ |
