diff options
author | David Malcolm <dmalcolm@redhat.com> | 2024-11-26 10:39:12 -0500 |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2024-11-26 10:39:12 -0500 |
commit | 08bb92d642757f1d4374b947f45f871cc04b8c65 (patch) | |
tree | 5a6efd6e3e6133a62dbefc9a19525f05ef1e0e61 /gcc | |
parent | 098a41cb972d3711ebcb518a72a1addfdb6c70cf (diff) | |
download | gcc-08bb92d642757f1d4374b947f45f871cc04b8c65.zip gcc-08bb92d642757f1d4374b947f45f871cc04b8c65.tar.gz gcc-08bb92d642757f1d4374b947f45f871cc04b8c65.tar.bz2 |
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 <dmalcolm@redhat.com>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/plugin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/plugin.cc b/gcc/plugin.cc index cd7776a..6528927 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) |