From e97717bac286ce7b13f20f95a56281807d9feeb1 Mon Sep 17 00:00:00 2001 From: Sergey Vlasov Date: Sun, 3 Sep 2006 14:12:51 +0200 Subject: [PATCH] make struct option arrays static const --- udevinfo.c | 2 +- udevtrigger.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/udevinfo.c b/udevinfo.c index d1d77152c..dca461695 100644 --- a/udevinfo.c +++ b/udevinfo.c @@ -168,7 +168,7 @@ int main(int argc, char *argv[], char *envp[]) struct udevice *udev; int root = 0; - struct option options[] = { + static const struct option options[] = { { "name", 1, NULL, 'n' }, { "path", 1, NULL, 'p' }, { "query", 1, NULL, 'q' }, diff --git a/udevtrigger.c b/udevtrigger.c index d332e088c..2e001db5c 100644 --- a/udevtrigger.c +++ b/udevtrigger.c @@ -468,7 +468,7 @@ int main(int argc, char *argv[], char *envp[]) { int failed = 0; int option; - struct option options[] = { + static const struct option options[] = { { "verbose", 0, NULL, 'v' }, { "dry-run", 0, NULL, 'n' }, { "retry-failed", 0, NULL, 'F' }, -- 2.30.2