summaryrefslogtreecommitdiff
path: root/apps/plugins/open_plugins.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2021-03-06 12:57:31 -0500
committerWilliam Wilgus <me.theuser@yahoo.com>2021-03-06 18:00:18 +0000
commit308dd4ffee5455c70bd801704c1662c654881255 (patch)
treec990e080fd43c889644acb49c525fa202be3dd4c /apps/plugins/open_plugins.c
parent87ad55b06e094fc3386f54319d6eba3ea1387e43 (diff)
downloadrockbox-308dd4ffee5455c70bd801704c1662c654881255.tar.gz
rockbox-308dd4ffee5455c70bd801704c1662c654881255.zip
Open_plugins.c fix red
rb->strncasecmp Change-Id: Icb1e6d0db42bd4708d581e80596604fb97578761
Diffstat (limited to 'apps/plugins/open_plugins.c')
-rw-r--r--apps/plugins/open_plugins.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/open_plugins.c b/apps/plugins/open_plugins.c
index 6f3295f8e3..0e636a7097 100644
--- a/apps/plugins/open_plugins.c
+++ b/apps/plugins/open_plugins.c
@@ -758,7 +758,7 @@ reopen_datfile:
758 while (path[0] == ' ') 758 while (path[0] == ' ')
759 path++; 759 path++;
760 760
761 if (strncasecmp(path, "-add", 4) == 0) 761 if (rb->strncasecmp(path, "-add", 4) == 0)
762 { 762 {
763 parameter = NULL; 763 parameter = NULL;
764 op_entry_browse_add(-1); 764 op_entry_browse_add(-1);