File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -200,18 +200,18 @@ typedef enum {
200200 /** Use the "patience diff" algorithm */
201201 GIT_DIFF_PATIENCE = (1u << 28 ),
202202 /** Take extra time to find minimal diff */
203- GIT_DIFF_MINIMAL = (1 << 29 ),
203+ GIT_DIFF_MINIMAL = (1u << 29 ),
204204
205205 /** Include the necessary deflate / delta information so that `git-apply`
206206 * can apply given diff information to binary files.
207207 */
208- GIT_DIFF_SHOW_BINARY = (1 << 30 ),
208+ GIT_DIFF_SHOW_BINARY = (1u << 30 ),
209209
210210 /** Use a heuristic that takes indentation and whitespace into account
211211 * which generally can produce better diffs when dealing with ambiguous
212212 * diff hunks.
213213 */
214- GIT_DIFF_INDENT_HEURISTIC = (1 << 31 ),
214+ GIT_DIFF_INDENT_HEURISTIC = (1u << 31 ),
215215} git_diff_option_t ;
216216
217217/**
You can’t perform that action at this time.
0 commit comments