Skip to content

Commit

Permalink
Use 'unsigned:1' when we mean boolean options
Browse files Browse the repository at this point in the history
These options are all strictly boolean (true/false).  Its easier to
document this implicitly by making their storage type a single bit.
There is no compelling memory space reduction reason for this change,
it just makes the structure definition slightly more readable.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
  • Loading branch information
Shawn O. Pearce authored and Junio C Hamano committed Sep 19, 2007
1 parent ab865e6 commit bbaf458
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions fetch-pack.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
struct fetch_pack_args
{
const char *uploadpack;
int quiet;
int keep_pack;
int unpacklimit;
int use_thin_pack;
int fetch_all;
int verbose;
int depth;
int no_progress;
unsigned quiet:1,
keep_pack:1,
use_thin_pack:1,
fetch_all:1,
verbose:1,
no_progress:1;
};

void setup_fetch_pack(struct fetch_pack_args *args);
Expand Down

0 comments on commit bbaf458

Please sign in to comment.