Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Core/Proxy.cs')
-rw-r--r--LibGit2Sharp/Core/Proxy.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp/Core/Proxy.cs b/LibGit2Sharp/Core/Proxy.cs
index 4850a0b5..9daaf8dd 100644
--- a/LibGit2Sharp/Core/Proxy.cs
+++ b/LibGit2Sharp/Core/Proxy.cs
@@ -270,12 +270,12 @@ namespace LibGit2Sharp.Core
#region git_cherry_pick_
- internal static void git_cherry_pick(RepositorySafeHandle repo, ObjectId commit, GitCherryPickOptions options)
+ internal static void git_cherrypick(RepositorySafeHandle repo, ObjectId commit, GitCherryPickOptions options)
{
using (ThreadAffinity())
using (var nativeCommit = git_object_lookup(repo, commit, GitObjectType.Commit))
{
- int res = NativeMethods.git_cherry_pick(repo, nativeCommit, options);
+ int res = NativeMethods.git_cherrypick(repo, nativeCommit, options);
Ensure.ZeroResult(res);
}
}