From ed84047884afd4efcd6268879030307dcbb6bebd Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Sun, 8 Feb 2026 14:39:17 -0500 Subject: [PATCH] [Fix Red] open_plugins rb-> is required Change-Id: I1f1a7e487d46a0427be7cebd319c65b848b4a9fb --- apps/plugins/open_plugins.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plugins/open_plugins.c b/apps/plugins/open_plugins.c index edf4273a3c..e90d2d95de 100644 --- a/apps/plugins/open_plugins.c +++ b/apps/plugins/open_plugins.c @@ -731,7 +731,7 @@ static void edit_menu(int selection) /* if user already set the name they probably don't want us to change it */ if (!name_set && op_entry.lang_id < 0 && rb->file_exists(op_entry.param)) { - char *slash=strrchr(op_entry.param, '/'); + char *slash = rb->strrchr(op_entry.param, '/'); if(slash) rb->strlcpy(op_entry.name, slash+1, OPEN_PLUGIN_NAMESZ); }