File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ pub struct git_config_backend {
102
102
pub snapshot :
103
103
Option < extern "C" fn ( * mut * mut git_config_backend , * mut git_config_backend ) -> c_int > ,
104
104
pub lock : Option < extern "C" fn ( * mut git_config_backend ) -> c_int > ,
105
- pub unlock : Option < extern "C" fn ( * mut git_config_backend ) -> c_int > ,
105
+ pub unlock : Option < extern "C" fn ( * mut git_config_backend , c_int ) -> c_int > ,
106
106
pub free : Option < extern "C" fn ( * mut git_config_backend ) > ,
107
107
}
108
108
@@ -3244,13 +3244,13 @@ extern "C" {
3244
3244
repo : * const git_repository ,
3245
3245
force : c_int ,
3246
3246
) -> c_int ;
3247
- pub fn git_config_backend_backend_from_string (
3247
+ pub fn git_config_backend_from_string (
3248
3248
out : * mut * mut git_config_backend ,
3249
3249
cfg : * const c_char ,
3250
3250
len : size_t ,
3251
3251
opts : * mut git_config_backend_memory_options ,
3252
3252
) -> c_int ;
3253
- pub fn git_config_backend_backend_from_values (
3253
+ pub fn git_config_backend_from_values (
3254
3254
out : * mut * mut git_config_backend ,
3255
3255
values : * mut * const c_char ,
3256
3256
len : size_t ,
You can’t perform that action at this time.
0 commit comments