From 08bb92d642757f1d4374b947f45f871cc04b8c65 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Tue, 26 Nov 2024 10:39:12 -0500 Subject: [PATCH] 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 --- 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.47.2