diff options
-rw-r--r-- | udevinfo.c | 2 | ||||
-rw-r--r-- | udevtrigger.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/udevinfo.c b/udevinfo.c index d1d77152c3..dca4616958 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 d332e088ca..2e001db5c9 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' }, |