diff options
author | Sebastian Schuberth <sschuberth@gmail.com> | 2011-09-08 14:21:17 +0200 |
---|---|---|
committer | Sebastian Schuberth <sschuberth@gmail.com> | 2011-09-08 17:07:37 +0200 |
commit | 26e74c6acedaec5c76944ac1f1a0f9215f23737f (patch) | |
tree | 2fe1169f6f54edec0b968d1c515251ac346578eb /include/git2/blob.h | |
parent | 564f0f7be1d962fdb3bdc42e7e47db9c1ce960ec (diff) | |
download | libgit2-26e74c6acedaec5c76944ac1f1a0f9215f23737f.tar.gz |
Fix some random size_t vs. int conversion warnings
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 e366ce880..97739d034 100644 --- a/include/git2/blob.h +++ b/include/git2/blob.h @@ -106,7 +106,7 @@ GIT_EXTERN(const void *) git_blob_rawcontent(git_blob *blob); * @param blob pointer to the blob * @return size on bytes */ -GIT_EXTERN(int) git_blob_rawsize(git_blob *blob); +GIT_EXTERN(size_t) git_blob_rawsize(git_blob *blob); /** * Read a file from the working folder of a repository |