mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-05 04:07:37 +00:00
15 lines
423 B
Diff
15 lines
423 B
Diff
Fix spelling of error string.
|
|
diff --git a/src/tree.c b/src/tree.c
|
|
index 9655ad7..7afef92 100644
|
|
--- a/src/tree.c
|
|
+++ b/src/tree.c
|
|
@@ -1257,7 +1257,7 @@ int git_tree_create_updated(git_oid *out, git_repository *repo, git_tree *baseli
|
|
break;
|
|
}
|
|
default:
|
|
- giterr_set(GITERR_TREE, "unkown action for update");
|
|
+ giterr_set(GITERR_TREE, "unknown action for update");
|
|
error = -1;
|
|
goto cleanup;
|
|
}
|