Commit ce2ab78f by Seth Junot

Fix typo causing removal of symbol 'git_worktree_prune_init_options'

Commit 0b5ba0d7 replaced this function with an "option_init"
equivallent, but misspelled the replacement function. As a result, this
symbol has been missing from libgit2.so ever since.
parent ad341eb7
...@@ -506,7 +506,7 @@ int git_worktree_prune_options_init( ...@@ -506,7 +506,7 @@ int git_worktree_prune_options_init(
return 0; return 0;
} }
int git_worktree_pruneinit_options(git_worktree_prune_options *opts, int git_worktree_prune_init_options(git_worktree_prune_options *opts,
unsigned int version) unsigned int version)
{ {
return git_worktree_prune_options_init(opts, version); return git_worktree_prune_options_init(opts, version);
......
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