diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-09-18 04:55:00 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-19 03:22:31 -0700 |
commit | bbaf4584286657582a92d5bb4038a5a06654ebb1 (patch) | |
tree | aefd71e09bc788bcff0e5e7b4f6b7dbb0cbc8583 /fetch-pack.h | |
parent | ab865e6eec1f40938604b1c28a32525c1fdc7227 (diff) | |
download | git-bbaf4584286657582a92d5bb4038a5a06654ebb1.tar.gz git-bbaf4584286657582a92d5bb4038a5a06654ebb1.tar.xz |
Use 'unsigned:1' when we mean boolean options
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>
Diffstat (limited to 'fetch-pack.h')
-rw-r--r-- | fetch-pack.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fetch-pack.h b/fetch-pack.h index cdcd84f2b..ad1307689 100644 --- a/fetch-pack.h +++ b/fetch-pack.h @@ -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); |