cgit

commit ad74669e67ea08969776e6700ec37323e4935e23

Author: John Keeping <john@keeping.me.uk>

ui-repolist: make sortcolumn definitions 'static const'

These are not used outside this file and are not declared; they are also
never modified.

Signed-off-by: John Keeping <john@keeping.me.uk>

 ui-repolist.c | 4 ++--


diff --git a/ui-repolist.c b/ui-repolist.c
index a6d032114db92ab052deaae236939a82f7992027..2453a7f4a4229d5bbb7479a87b928593618acb35 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -223,7 +223,7 @@ 	const char *name;
 	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 @@ };
 
 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))