sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit bdadfe879e3ddfa1ce167c350d383e894c1ef157
parent f7b56cd9a8da6207e991c16c3e4d67890a47bb1a
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sun,  6 Jan 2019 13:37:04 +0100

build-page: fix sorting

Diffstat:
Mbuild-page.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-page.c b/build-page.c @@ -196,7 +196,7 @@ print_nav_bar(char *domain) int qsort_strcmp(const void *a, const void *b) { - return strcmp((const char *)a, (const char *)b); + return strcmp(*(const char **)a, *(const char **)b); } void