https://gcc.gnu.org/g:08bb92d642757f1d4374b947f45f871cc04b8c65
commit r15-5698-g08bb92d642757f1d4374b947f45f871cc04b8c65 Author: David Malcolm <dmalc...@redhat.com> Date: Tue Nov 26 10:39:12 2024 -0500 plugin: add missing colon in error message [PR93746] gcc/ChangeLog: PR plugins/93746 * plugin.cc (try_init_one_plugin): Add missing colon in error message. Signed-off-by: David Malcolm <dmalc...@redhat.com> Diff: --- gcc/plugin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/plugin.cc b/gcc/plugin.cc index cd7776a0a9ec..652892796b5b 100644 --- a/gcc/plugin.cc +++ b/gcc/plugin.cc @@ -714,7 +714,7 @@ try_init_one_plugin (struct plugin_name_args *plugin) /* Check the plugin license. */ if (dlsym (dl_handle, str_license) == NULL) fatal_error (input_location, - "plugin %s is not licensed under a GPL-compatible license" + "plugin %s is not licensed under a GPL-compatible license:" " %s", plugin->full_name, dlerror ()); PTR_UNION_AS_VOID_PTR (plugin_init_union)