From 1d37c19e0492ddd426c7a05c815a45b997b55498 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Mon, 8 Aug 2011 14:37:30 -0400 Subject: 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 Signed-off-by: Dan McGee --- src/pacman/pacman.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pacman') 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'}, -- cgit v1.2.3-24-g4f1b