]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
plugin: add missing colon in error message [PR93746]
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 26 Nov 2024 15:39:12 +0000 (10:39 -0500)
committerDavid Malcolm <dmalcolm@redhat.com>
Tue, 26 Nov 2024 15:39:12 +0000 (10:39 -0500)
gcc/ChangeLog:
PR plugins/93746
* plugin.cc (try_init_one_plugin): Add missing colon in error
message.

Signed-off-by: David Malcolm <dmalcolm@redhat.com>
gcc/plugin.cc

index cd7776a0a9ec93439a6629777c0e9f7625cb50d0..652892796b5b4a411af657c63c1db0536778c4bd 100644 (file)
@@ -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)