]> asedeno.scripts.mit.edu Git - git.git/commitdiff
Use 'unsigned:1' when we mean boolean options
authorShawn O. Pearce <spearce@spearce.org>
Tue, 18 Sep 2007 08:55:00 +0000 (04:55 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 19 Sep 2007 10:22:31 +0000 (03:22 -0700)
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>
fetch-pack.h

index cdcd84f2b562d2f6a47a2ed2f4434034f639cbd5..ad1307689d2488011e99938b8091f3fd3428ccf8 100644 (file)
@@ -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);