Skip to content

Commit ce2ab78

Browse files
committed
Fix typo causing removal of symbol 'git_worktree_prune_init_options'
Commit 0b5ba0d 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.
1 parent ad341eb commit ce2ab78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/worktree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ int git_worktree_prune_options_init(
506506
return 0;
507507
}
508508

509-
int git_worktree_pruneinit_options(git_worktree_prune_options *opts,
509+
int git_worktree_prune_init_options(git_worktree_prune_options *opts,
510510
unsigned int version)
511511
{
512512
return git_worktree_prune_options_init(opts, version);

0 commit comments

Comments
 (0)