Skip to content

Commit 764877b

Browse files
committed
change constant GIT_DIFF_INDENT_HEURISTIC in lib.rs to match declaration in libgit2-sys/libgit2/include/git2/diff.h Thanks @ehuss
1 parent 3d823d3 commit 764877b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libgit2-sys/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ pub const GIT_DIFF_SHOW_UNMODIFIED: git_diff_option_t = 1 << 26;
11121112
pub const GIT_DIFF_PATIENCE: git_diff_option_t = 1 << 28;
11131113
pub const GIT_DIFF_MINIMAL: git_diff_option_t = 1 << 29;
11141114
pub const GIT_DIFF_SHOW_BINARY: git_diff_option_t = 1 << 30;
1115-
pub const GIT_DIFF_INDENT_HEURISTIC: git_diff_option_t = 1 << 31;
1115+
pub const GIT_DIFF_INDENT_HEURISTIC: git_diff_option_t = 1 << 18;
11161116

11171117
#[repr(C)]
11181118
pub struct git_diff_find_options {

0 commit comments

Comments
 (0)