summaryrefslogtreecommitdiff
path: root/include/git2/diff.h
diff options
context:
space:
mode:
authorPierre-Olivier Latour <pol@mac.com>2014-10-26 10:40:46 -0700
committerPierre-Olivier Latour <pol@mac.com>2014-10-27 09:17:01 -0700
commitd88766c4e16c311ba8ce28e71a6545c5d0d7521f (patch)
tree4f328df9927cfd707311e58105be0a433a15a85a /include/git2/diff.h
parent116a19d4674237af7a8ff1e1822e3033e1f8f0d7 (diff)
downloadlibgit2-d88766c4e16c311ba8ce28e71a6545c5d0d7521f.tar.gz
Changed context_lines and interhunk_lines to uint32_t to match struct s_xdemitconf
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r--include/git2/diff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h
index 1013b5c33..4403944f4 100644
--- a/include/git2/diff.h
+++ b/include/git2/diff.h
@@ -377,8 +377,8 @@ typedef struct {
/* options controlling how to diff text is generated */
- uint16_t context_lines; /**< defaults to 3 */
- uint16_t interhunk_lines; /**< defaults to 0 */
+ uint32_t context_lines; /**< defaults to 3 */
+ uint32_t interhunk_lines; /**< defaults to 0 */
uint16_t id_abbrev; /**< default 'core.abbrev' or 7 if unset */
git_off_t max_size; /**< defaults to 512MB */
const char *old_prefix; /**< defaults to "a" */