summaryrefslogtreecommitdiff
path: root/compiler/typecheck/TcEnv.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/typecheck/TcEnv.hs')
-rw-r--r--compiler/typecheck/TcEnv.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/typecheck/TcEnv.hs b/compiler/typecheck/TcEnv.hs
index 86c93ee764..a11b0c2abd 100644
--- a/compiler/typecheck/TcEnv.hs
+++ b/compiler/typecheck/TcEnv.hs
@@ -798,7 +798,7 @@ mkWrapperName what nameBase
thisMod <- getModule
let -- Note [Generating fresh names for ccall wrapper]
wrapperRef = nextWrapperNum dflags
- pkg = packageKeyString (modulePackageKey thisMod)
+ pkg = unitIdString (moduleUnitId thisMod)
mod = moduleNameString (moduleName thisMod)
wrapperNum <- liftIO $ atomicModifyIORef' wrapperRef $ \mod_env ->
let num = lookupWithDefaultModuleEnv mod_env 0 thisMod