aboutsummaryrefslogtreecommitdiffstats
path: root/ui-repolist.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2008-11-29 14:27:35 +0100
committerLars Hjemli <hjemli@gmail.com>2008-11-29 14:27:35 +0100
commit54272e60965ec6a98b49cbf67d72a4b1f5adc55b (patch)
tree183bc1876d0c53b879627bb9fd66f2978d41929e /ui-repolist.c
parentui-repolist: add support for sorting any column (diff)
downloadcgit-54272e60965ec6a98b49cbf67d72a4b1f5adc55b.tar.xz
cgit-54272e60965ec6a98b49cbf67d72a4b1f5adc55b.zip
ui-repolist: sort null values last
When sorting on e.g. owner, it's not interesting to get all repos without owner at the top of the list. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r--ui-repolist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-repolist.c b/ui-repolist.c
index 0de328b..cf27cb3 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -116,9 +116,9 @@ static int cmp(const char *s1, const char *s2)
if (s1 && s2)
return strcmp(s1, s2);
if (s1 && !s2)
- return 1;
- if (s2 && !s1)
return -1;
+ if (s2 && !s1)
+ return 1;
return 0;
}