all repos — cgit @ ad74669e67ea08969776e6700ec37323e4935e23

a hyperfast web frontend for git written in c

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>
John Keeping john@keeping.me.uk
Sun, 08 Mar 2015 16:32:21 +0000
commit

ad74669e67ea08969776e6700ec37323e4935e23

parent

3fe509e17a337cbaa300b4b9aa2a248c2d0be873

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M ui-repolist.cui-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))