diff options
author | Russell Belfer <rb@github.com> | 2012-03-21 11:04:32 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2012-03-21 11:04:32 -0700 |
commit | d3dd775ea51580a9036d7ed91a66963d31158bcc (patch) | |
tree | 0911a59066df294056bf8c918a246e5a4b00e2fe /src | |
parent | e71b78b02b6f28d1cf94dc5023fe1faba3f4026c (diff) | |
parent | 7826d577599a19a5b1ada97c45932e3b909f5add (diff) | |
download | libgit2-d3dd775ea51580a9036d7ed91a66963d31158bcc.tar.gz |
Merge pull request #608 from schu/remove-unused-parameter
diff_output: remove unused parameter
Diffstat (limited to 'src')
-rw-r--r-- | src/diff_output.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/diff_output.c b/src/diff_output.c index d5286ed68..23f74d216 100644 --- a/src/diff_output.c +++ b/src/diff_output.c @@ -671,7 +671,6 @@ int git_diff_print_patch( int git_diff_blobs( - git_repository *repo, git_blob *old_blob, git_blob *new_blob, git_diff_options *options, @@ -686,8 +685,6 @@ int git_diff_blobs( xdemitconf_t xdiff_config; xdemitcb_t xdiff_callback; - assert(repo); - if (options && (options->flags & GIT_DIFF_REVERSE)) { git_blob *swap = old_blob; old_blob = new_blob; |