diff --git a/menu/cbs/menu_cbs_title.c b/menu/cbs/menu_cbs_title.c index 4a35e17b3e..1aa4c79639 100644 --- a/menu/cbs/menu_cbs_title.c +++ b/menu/cbs/menu_cbs_title.c @@ -67,7 +67,7 @@ { \ const char *title = msg_hash_to_str(lbl); \ if (!string_is_empty(path) && !string_is_empty(title)) \ - fill_pathname_join_delim(s, title, path, ' ', len); \ + snprintf(s, len, "%s: %s", title, path); \ else if (!string_is_empty(title)) \ strlcpy(s, title, len); \ return 1; \