Skip to content

Commit

Permalink
fetch-pack.h: one statement per bitfield declaration
Browse files Browse the repository at this point in the history
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Nguyễn Thái Ngọc Duy authored and Junio C Hamano committed Dec 11, 2013
1 parent a796cce commit f6486f0
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions fetch-pack.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ struct fetch_pack_args {
const char *uploadpack;
int unpacklimit;
int depth;
unsigned quiet:1,
keep_pack:1,
lock_pack:1,
use_thin_pack:1,
fetch_all:1,
stdin_refs:1,
verbose:1,
no_progress:1,
include_tag:1,
stateless_rpc:1,
check_self_contained_and_connected:1,
self_contained_and_connected:1;
unsigned quiet:1;
unsigned keep_pack:1;
unsigned lock_pack:1;
unsigned use_thin_pack:1;
unsigned fetch_all:1;
unsigned stdin_refs:1;
unsigned verbose:1;
unsigned no_progress:1;
unsigned include_tag:1;
unsigned stateless_rpc:1;
unsigned check_self_contained_and_connected:1;
unsigned self_contained_and_connected:1;
};

/*
Expand Down

0 comments on commit f6486f0

Please sign in to comment.