summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Prott <kai.prott@hotmail.de>2021-11-24 11:59:01 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-11-26 16:01:47 -0500
commit69e62032a5a6db046b14f1e9b31d657818d9fb92 (patch)
treeb1b26bed2c5daa8765790df0e3d84b4facf0ea65
parent1830eea7a4053bf1973222c4750cd2796470d55f (diff)
downloadhaskell-69e62032a5a6db046b14f1e9b31d657818d9fb92.tar.gz
Fix plugin type to GHC.Plugins.Plugin
-rw-r--r--compiler/GHC/Runtime/Loader.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Runtime/Loader.hs b/compiler/GHC/Runtime/Loader.hs
index fbfc92cdee..24fb77b9bd 100644
--- a/compiler/GHC/Runtime/Loader.hs
+++ b/compiler/GHC/Runtime/Loader.hs
@@ -143,7 +143,7 @@ loadPlugin' occ_name plugin_name hsc_env mnwib mod_name
[ text "The value", ppr name
, text "with type", ppr actual_type
, text "did not have the type"
- , ppr pluginTyConName, text "as required"])
+ , text "GHC.Plugins.Plugin"
, text "as required"])
Right plugin -> return (plugin, mod_iface) } } }