Skip to content

Commit

Permalink
Merge branch 'jk/diff-filespec-cleanup'
Browse files Browse the repository at this point in the history
Portability fix to a topic already in v1.9

* jk/diff-filespec-cleanup:
  diffcore.h: be explicit about the signedness of is_binary
  • Loading branch information
Junio C Hamano committed Mar 18, 2014
2 parents 15520a8 + 7d0a9a7 commit 9b34767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diffcore.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct diff_filespec {
unsigned is_stdin : 1;
unsigned has_more_entries : 1; /* only appear in combined diff */
/* data should be considered "binary"; -1 means "don't know yet" */
int is_binary : 2;
signed int is_binary : 2;
struct userdiff_driver *driver;
};

Expand Down

0 comments on commit 9b34767

Please sign in to comment.