From 98274793a34985ca3841ae02df1d902436b43283 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 10 Dec 2022 14:37:44 +0545 Subject: tools: mark long_options static & const This is read-only data, so don't include it in the read/write page. --- tools/getfattr.c | 2 +- tools/setfattr.c | 2 +- 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' }, -- cgit v1.2.1