diff options
author | Etienne Samson <tiennou7@gmail.com> | 2013-07-09 12:52:25 +0200 |
---|---|---|
committer | Etienne Samson <tiennou7@gmail.com> | 2013-07-09 12:52:25 +0200 |
commit | 2274993be5acf3a9fcf62abbf1f00d06fb513624 (patch) | |
tree | e33c829dc493f3d62a6676c243bd5101a7ff6001 /include/git2/stash.h | |
parent | 82cb8e236a07d8684c53aa8ee5b1c6195f788371 (diff) | |
download | libgit2-2274993be5acf3a9fcf62abbf1f00d06fb513624.tar.gz |
Make the git_signature const in the stash API.
Diffstat (limited to 'include/git2/stash.h')
-rw-r--r-- | include/git2/stash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/stash.h b/include/git2/stash.h index 68d1b5413..b48d33f5d 100644 --- a/include/git2/stash.h +++ b/include/git2/stash.h @@ -57,7 +57,7 @@ typedef enum { GIT_EXTERN(int) git_stash_save( git_oid *out, git_repository *repo, - git_signature *stasher, + const git_signature *stasher, const char *message, unsigned int flags); |