Successfully bootstrapped & regrtested on x86_64-pc-linux-gnu.
Pushed to trunk as r15-5698-g08bb92d642757f.
gcc/ChangeLog:
PR plugins/93746
* plugin.cc (try_init_one_plugin): Add missing colon in error
message.
Signed-off-by: David Malcolm <[email protected]>
---
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)
--
2.26.3