From 46779411f93589fe567817fbdd61304847aa83c3 Mon Sep 17 00:00:00 2001 From: Russell Belfer Date: Wed, 1 May 2013 05:32:10 -0700 Subject: [PATCH] fix typo --- src/clone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }