diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-08-08 20:37:30 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-08-08 23:50:03 +0200 |
commit | 1d37c19e0492ddd426c7a05c815a45b997b55498 (patch) | |
tree | ea32379fc306eb897f9742ba21d6c2911a529c81 /src | |
parent | 5136df0f393567117b84d4580737e2920cc63f57 (diff) | |
download | pacman-1d37c19e0492ddd426c7a05c815a45b997b55498.tar.gz pacman-1d37c19e0492ddd426c7a05c815a45b997b55498.tar.xz |
mark option structs as const
These are never modified and even getopt_long's prototype shows this
modifier on the parameter.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/pacman.c | 2 | ||||
-rw-r--r-- | src/util/pactree.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index e855203a..21ccc966 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -573,7 +573,7 @@ static int parseargs(int argc, char *argv[]) int option_index = 0; int result; const char *optstring = "DQRSTUVb:cdefghiklmnopqr:stuvwy"; - static struct option opts[] = + static const struct option opts[] = { {"database", no_argument, 0, 'D'}, {"query", no_argument, 0, 'Q'}, diff --git a/src/util/pactree.c b/src/util/pactree.c index 9b678631..5a27cc77 100644 --- a/src/util/pactree.c +++ b/src/util/pactree.c @@ -164,7 +164,7 @@ static int parse_options(int argc, char *argv[]) int opt, option_index = 0; char *endptr = NULL; - static struct option opts[] = { + static const struct option opts[] = { {"dbpath", required_argument, 0, 'b'}, {"color", no_argument, 0, 'c'}, {"depth", required_argument, 0, 'd'}, |