diff options
| author | Russell Belfer <rb@github.com> | 2013-06-12 15:39:22 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2013-06-12 15:39:22 -0700 |
| commit | 3b5001b4c911db9c47d62399c1adc03bd8a3ca72 (patch) | |
| tree | d12ffc9e55c0f954d6beb79d419042577de5c273 /src/diff_driver.c | |
| parent | 88c401bec80f795775b50f5b1f1421cf1e6385a3 (diff) | |
| parent | 37f66e82635c95d808c418f00d8e3c6646bd31f2 (diff) | |
| download | libgit2-3b5001b4c911db9c47d62399c1adc03bd8a3ca72.tar.gz | |
Merge pull request #1647 from arrbee/fix-win32-warnings-part-112
Fix Windows warnings and missing prototypes
Diffstat (limited to 'src/diff_driver.c')
| -rw-r--r-- | src/diff_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/diff_driver.c b/src/diff_driver.c index ae2b7c319..469be0d14 100644 --- a/src/diff_driver.c +++ b/src/diff_driver.c @@ -331,7 +331,7 @@ int git_diff_driver_content_is_binary( } static int diff_context_line__simple( - git_diff_driver *driver, const char *line, long line_len) + git_diff_driver *driver, const char *line, size_t line_len) { GIT_UNUSED(driver); GIT_UNUSED(line_len); @@ -339,7 +339,7 @@ static int diff_context_line__simple( } static int diff_context_line__pattern_match( - git_diff_driver *driver, const char *line, long line_len) + git_diff_driver *driver, const char *line, size_t line_len) { size_t i; |
