diff options
Diffstat (limited to 'src/stash.c')
-rw-r--r-- | src/stash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stash.c b/src/stash.c index 71ab7b945..c79068edf 100644 --- a/src/stash.c +++ b/src/stash.c @@ -106,7 +106,7 @@ static int build_tree_from_index(git_tree **out, git_index *index) git_oid i_tree_oid; if ((error = git_index_write_tree(&i_tree_oid, index)) < 0) - return -1; + return error; return git_tree_lookup(out, git_index_owner(index), &i_tree_oid); } |