summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-08-08 20:37:30 +0200
committerDan McGee <dan@archlinux.org>2011-08-08 23:50:03 +0200
commit1d37c19e0492ddd426c7a05c815a45b997b55498 (patch)
treeea32379fc306eb897f9742ba21d6c2911a529c81
parent5136df0f393567117b84d4580737e2920cc63f57 (diff)
downloadpacman-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>
-rw-r--r--src/pacman/pacman.c2
-rw-r--r--src/util/pactree.c2
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'},