Commit 8adea28a by Ben Straub

Blame: change signature to be more binding-friendly

parent aad5403f
...@@ -183,7 +183,7 @@ GIT_EXTERN(int) git_blame_buffer( ...@@ -183,7 +183,7 @@ GIT_EXTERN(int) git_blame_buffer(
git_blame **out, git_blame **out,
git_blame *reference, git_blame *reference,
const char *buffer, const char *buffer,
size_t buffer_len); uint32_t buffer_len);
/** /**
* Free memory allocated by git_blame_file or git_blame_buffer. * Free memory allocated by git_blame_file or git_blame_buffer.
......
...@@ -448,7 +448,7 @@ int git_blame_buffer( ...@@ -448,7 +448,7 @@ int git_blame_buffer(
git_blame **out, git_blame **out,
git_blame *reference, git_blame *reference,
const char *buffer, const char *buffer,
size_t buffer_len) uint32_t buffer_len)
{ {
git_blame *blame; git_blame *blame;
git_diff_options diffopts = GIT_DIFF_OPTIONS_INIT; git_diff_options diffopts = GIT_DIFF_OPTIONS_INIT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment