]> git.proxmox.com Git - libgit2.git/commitdiff
corrected typo in error message
authorBrendan Forster <brendan@github.com>
Mon, 10 Mar 2014 03:40:07 +0000 (14:40 +1100)
committerBrendan Forster <brendan@github.com>
Mon, 10 Mar 2014 03:40:07 +0000 (14:40 +1100)
src/index.c

index 2de3dfebbdf67ba20ec402ea875763e8300f7651..0d7d50668af905592e2a64f3f96cec09d7745268 100644 (file)
@@ -532,7 +532,7 @@ int git_index_write(git_index *index)
        if ((error = git_filebuf_open(
                &file, index->index_file_path, GIT_FILEBUF_HASH_CONTENTS, GIT_INDEX_FILE_MODE)) < 0) {
                if (error == GIT_ELOCKED)
-                       giterr_set(GITERR_INDEX, "The index is locked. This might be due to a concurrrent or crashed process");
+                       giterr_set(GITERR_INDEX, "The index is locked. This might be due to a concurrent or crashed process");
 
                return error;
        }