diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-03-05 13:29:50 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-03-05 13:29:50 +0200 |
commit | 3490188b3c40b7a6cddd4acb11ee76db171dc5ef (patch) | |
tree | 17bc39b69d5545b0256fc948f16c1e9e592ef5a1 /src/blob.c | |
parent | e0011be3301db9b287226c6c8f1794c912bb0241 (diff) | |
download | libgit2-3490188b3c40b7a6cddd4acb11ee76db171dc5ef.tar.gz |
Change the return type of `git_blob_rawcontent`
Should return `void *` for raw bytes.
Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/blob.c')
-rw-r--r-- | src/blob.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ #include "common.h" #include "blob.h" -const char *git_blob_rawcontent(git_blob *blob) +const void *git_blob_rawcontent(git_blob *blob) { assert(blob); |