From: Shawn O. Pearce Date: Tue, 18 Sep 2007 08:55:00 +0000 (-0400) Subject: Use 'unsigned:1' when we mean boolean options X-Git-Tag: v1.5.4-rc0~325^2~24 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=bbaf4584286657582a92d5bb4038a5a06654ebb1;p=git.git 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 --- 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);