Blame: change signature to be more binding-friendly

This commit is contained in:
Ben Straub 2013-11-05 11:42:42 -08:00
parent aad5403fe9
commit 8adea28ae9
2 changed files with 2 additions and 2 deletions

View File

@ -183,7 +183,7 @@ GIT_EXTERN(int) git_blame_buffer(
git_blame **out,
git_blame *reference,
const char *buffer,
size_t buffer_len);
uint32_t buffer_len);
/**
* Free memory allocated by git_blame_file or git_blame_buffer.

View File

@ -448,7 +448,7 @@ int git_blame_buffer(
git_blame **out,
git_blame *reference,
const char *buffer,
size_t buffer_len)
uint32_t buffer_len)
{
git_blame *blame;
git_diff_options diffopts = GIT_DIFF_OPTIONS_INIT;