diff options
author | Vicent Marti <vicent@github.com> | 2014-04-03 17:12:11 +0200 |
---|---|---|
committer | Vicent Marti <vicent@github.com> | 2014-04-03 17:12:11 +0200 |
commit | 4c219cf64868d1b3fc2c5df0bbf803b40c6e4cef (patch) | |
tree | 14f1ba819d09fce9872eb31db424b30274447d02 /include/git2/blob.h | |
parent | fd61f05ea605155ed9e56bfad0e804c6718e0611 (diff) | |
parent | 3b4ba2787049c561cd7a9e3fea8fc16e473a0b32 (diff) | |
download | libgit2-4c219cf64868d1b3fc2c5df0bbf803b40c6e4cef.tar.gz |
Merge pull request #2244 from jacquesg/const-correctness
Const correctness!
Diffstat (limited to 'include/git2/blob.h')
-rw-r--r-- | include/git2/blob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/blob.h b/include/git2/blob.h index ac4d84392..1b6583309 100644 --- a/include/git2/blob.h +++ b/include/git2/blob.h @@ -216,7 +216,7 @@ GIT_EXTERN(int) git_blob_create_frombuffer( * @return 1 if the content of the blob is detected * as binary; 0 otherwise. */ -GIT_EXTERN(int) git_blob_is_binary(git_blob *blob); +GIT_EXTERN(int) git_blob_is_binary(const git_blob *blob); /** @} */ GIT_END_DECL |