From: David Malcolm Date: Tue, 26 Nov 2024 15:39:12 +0000 (-0500) Subject: plugin: add missing colon in error message [PR93746] X-Git-Tag: basepoints/gcc-16~3855 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08bb92d642757f1d4374b947f45f871cc04b8c65;p=thirdparty%2Fgcc.git 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 --- 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)