summaryrefslogtreecommitdiff
path: root/cocoa
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/system_colour.m4
1 files changed, 1 insertions, 3 deletions
diff --git a/cocoa/system_colour.m b/cocoa/system_colour.m
index d528d7388..bd3e87f46 100644
--- a/cocoa/system_colour.m
+++ b/cocoa/system_colour.m
@@ -256,9 +256,7 @@ colour gui_system_colour_char(const char *name)
unsigned int ccount;
for (ccount = 0; ccount < colour_list_len; ccount++) {
- if (strncasecmp(name,
- colour_list[ccount].name,
- colour_list[ccount].length) == 0) {
+ if (strcmp(name, colour_list[ccount].name) == 0) {
ret = colour_list[ccount].colour;
break;
}