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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-05-01 16:32:10 +0400
committerRussell Belfer <rb@github.com>2013-05-01 16:32:10 +0400
commit46779411f93589fe567817fbdd61304847aa83c3 (patch)
treebac33aa1a149a5f17a6ce8a5eab61bab94d2aa72 /src/clone.c
parentae99f5e2ab090c1c666dfbf36753b8c18ab88478 (diff)
fix typo
Diffstat (limited to 'src/clone.c')
-rw-r--r--src/clone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clone.c b/src/clone.c
index a19788699..36da9c276 100644
--- a/src/clone.c
+++ b/src/clone.c
@@ -435,7 +435,7 @@ int git_clone(
/* Only clone to a new directory or an empty directory */
if (git_path_exists(local_path) && !git_path_is_empty_dir(local_path)) {
giterr_set(GITERR_INVALID,
- "'%s' exists and is not an empty directory", path);
+ "'%s' exists and is not an empty directory", local_path);
return GIT_ERROR;
}