summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-12-10 14:37:44 +0545
committerMike Frysinger <vapier@gentoo.org>2022-12-10 14:37:44 +0545
commit98274793a34985ca3841ae02df1d902436b43283 (patch)
treefe00969bc8196ed4619fe531e3db7f8cba159950
parent958bc7a9cb57d884af32012bac31c85017c4d7fd (diff)
downloadattr-98274793a34985ca3841ae02df1d902436b43283.tar.gz
tools: mark long_options static & const
This is read-only data, so don't include it in the read/write page.
-rw-r--r--tools/getfattr.c2
-rw-r--r--tools/setfattr.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/getfattr.c b/tools/getfattr.c
index abdd0d4..b610b23 100644
--- a/tools/getfattr.c
+++ b/tools/getfattr.c
@@ -38,7 +38,7 @@
#define CMD_LINE_OPTIONS "n:de:m:hRLP"
#define CMD_LINE_SPEC "[-hRLP] [-n name|-d] [-e en] [-m pattern] path..."
-struct option long_options[] = {
+static const struct option long_options[] = {
{ "name", 1, 0, 'n' },
{ "dump", 0, 0, 'd' },
{ "encoding", 1, 0, 'e' },
diff --git a/tools/setfattr.c b/tools/setfattr.c
index b2e1df0..c4e2d79 100644
--- a/tools/setfattr.c
+++ b/tools/setfattr.c
@@ -38,7 +38,7 @@
#define CMD_LINE_SPEC1 "{-n name} [-v value] [-h] file..."
#define CMD_LINE_SPEC2 "{-x name} [-h] file..."
-struct option long_options[] = {
+static const struct option long_options[] = {
{ "name", 1, 0, 'n' },
{ "remove", 1, 0, 'x' },
{ "value", 1, 0, 'v' },