diff options
| author | Vicent Martà <vicent@github.com> | 2013-10-08 17:03:12 -0700 |
|---|---|---|
| committer | Vicent Martà <vicent@github.com> | 2013-10-08 17:03:12 -0700 |
| commit | 95c148b2c772b5f97e0db60bff089d8fa944971c (patch) | |
| tree | 18695995886b76a7c7e4e3fc0447bdfe7300bc63 /src/odb_pack.c | |
| parent | 062c95c2a9265cab8039c02a978944cd672017e5 (diff) | |
| parent | 867f7c9b3329952dc0aebf9770019a7a01ff2691 (diff) | |
| download | libgit2-95c148b2c772b5f97e0db60bff089d8fa944971c.tar.gz | |
Merge pull request #1886 from libgit2/precompose-utf8
Add support for core.precomposeunicode on Mac
Diffstat (limited to 'src/odb_pack.c')
| -rw-r--r-- | src/odb_pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odb_pack.c b/src/odb_pack.c index cadc93a65..897bddf32 100644 --- a/src/odb_pack.c +++ b/src/odb_pack.c @@ -331,7 +331,7 @@ static int pack_backend__refresh(git_odb_backend *_backend) git_buf_sets(&path, backend->pack_folder); /* reload all packs */ - error = git_path_direach(&path, packfile_load__cb, (void *)backend); + error = git_path_direach(&path, 0, packfile_load__cb, backend); git_buf_free(&path); |
