Skip to content

Commit

Permalink
fmt-merge-msg.c: Fix an "dubious one-bit signed bitfield" sparse error
Browse files Browse the repository at this point in the history
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Ramsay Jones authored and Junio C Hamano committed Oct 16, 2011
1 parent 273c703 commit 90a321c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/fmt-merge-msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct src_data {

struct origin_data {
unsigned char sha1[20];
int is_local_branch:1;
unsigned is_local_branch:1;
};

static void init_src_data(struct src_data *data)
Expand Down

0 comments on commit 90a321c

Please sign in to comment.