summaryrefslogtreecommitdiffstats
path: root/mount/lomount.c
diff options
context:
space:
mode:
authorKarel Zak2011-03-03 15:00:30 +0100
committerKarel Zak2011-03-03 15:00:30 +0100
commit6c7d5ae9a2338be35cfab0fd8379a9f58c4f8c36 (patch)
treeb2e95024812c05b13b7102a104ff8277b61fe1f0 /mount/lomount.c
parentdocs: update TODO file (diff)
downloadkernel-qcow2-util-linux-6c7d5ae9a2338be35cfab0fd8379a9f58c4f8c36.tar.gz
kernel-qcow2-util-linux-6c7d5ae9a2338be35cfab0fd8379a9f58c4f8c36.tar.xz
kernel-qcow2-util-linux-6c7d5ae9a2338be35cfab0fd8379a9f58c4f8c36.zip
move struct option to .rodata
It does not make sense to have writable large arrays of "struct option" on the stack. Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'mount/lomount.c')
-rw-r--r--mount/lomount.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mount/lomount.c b/mount/lomount.c
index 0bbcbc19d..84dfb1275 100644
--- a/mount/lomount.c
+++ b/mount/lomount.c
@@ -1042,7 +1042,8 @@ main(int argc, char **argv) {
int ro = 0;
int pfd = -1;
uintmax_t off = 0, slimit = 0;
- struct option longopts[] = {
+
+ static const struct option longopts[] = {
{ "all", 0, 0, 'a' },
{ "set-capacity", 0, 0, 'c' },
{ "detach", 0, 0, 'd' },