summaryrefslogtreecommitdiffstats
path: root/examples/args.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/args.h')
-rw-r--r--examples/args.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/args.h b/examples/args.h
index d626f98..4db0493 100644
--- a/examples/args.h
+++ b/examples/args.h
@@ -8,7 +8,7 @@ struct args_info {
int argc;
char **argv;
int pos;
- int opts_done : 1; /**< Did we see a -- separator */
+ unsigned int opts_done : 1; /**< Did we see a -- separator */
};
#define ARGS_INFO_INIT { argc, argv, 0, 0 }
#define ARGS_CURRENT(args) args->argv[args->pos]