summaryrefslogtreecommitdiffstats
path: root/src/tui.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tui.c')
-rw-r--r--src/tui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tui.c b/src/tui.c
index 9cd2fc3..99173f1 100644
--- a/src/tui.c
+++ b/src/tui.c
@@ -428,7 +428,7 @@ tag_name_cmp(struct link *l1, struct link *l2)
t1 = LINK_UPCAST(l1, struct tag, link);
t2 = LINK_UPCAST(l2, struct tag, link);
- return strcmp(t1->name, t2->name) <= 0;
+ return strcasecmp(t1->name, t2->name) <= 0;
}
void
@@ -654,7 +654,7 @@ track_vis_name_cmp(struct link *l1, struct link *l2)
t1 = tracks_vis_track(l1);
t2 = tracks_vis_track(l2);
- return strcmp(t1->name, t2->name) <= 0;
+ return strcasecmp(t1->name, t2->name) <= 0;
}
void