diff options
Diffstat (limited to '')
-rw-r--r-- | examples/checkout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/checkout.c b/examples/checkout.c index ac7b742..82567cd 100644 --- a/examples/checkout.c +++ b/examples/checkout.c @@ -35,9 +35,9 @@ */ typedef struct { - int force : 1; - int progress : 1; - int perf : 1; + unsigned int force : 1; + unsigned int progress : 1; + unsigned int perf : 1; } checkout_options; static void print_usage(void) |