From mboxrd@z Thu Jan 1 00:00:00 1970 From: john at keeping.me.uk (John Keeping) Date: Sun, 8 Mar 2015 16:32:21 +0000 Subject: [PATCH 07/13] ui-repolist: make sortcolumn definitions 'static const' In-Reply-To: References: Message-ID: <6cb41c3c9d6ad0a397b7acfc13a160a5635e4c09.1425832129.git.john@keeping.me.uk> These are not used outside this file and are not declared; they are also never modified. Signed-off-by: John Keeping --- ui-repolist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui-repolist.c b/ui-repolist.c index a6d0321..2453a7f 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -223,7 +223,7 @@ struct sortcolumn { int (*fn)(const void *a, const void *b); }; -struct sortcolumn sortcolumn[] = { +static const struct sortcolumn sortcolumn[] = { {"section", sort_section}, {"name", sort_name}, {"desc", sort_desc}, @@ -234,7 +234,7 @@ struct sortcolumn sortcolumn[] = { static int sort_repolist(char *field) { - struct sortcolumn *column; + const struct sortcolumn *column; for (column = &sortcolumn[0]; column->name; column++) { if (strcmp(field, column->name)) -- 2.3.1.308.g754cd77