diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-05-09 10:34:35 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-05-09 10:34:35 +0000 |
commit | feee9bb8151fd592df9ad4d10fc2e418b26f3e2c (patch) | |
tree | 7e62530614c7c3be39f5dde93a109f09ea47ecf0 /compiler | |
parent | 2c8701fbebc0a6a49248392b53d977f0afdea4ec (diff) | |
download | haskell-feee9bb8151fd592df9ad4d10fc2e418b26f3e2c.tar.gz |
Fix a missing prime spotted by -fwarn-unused-binds
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/ghci/Linker.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/Linker.lhs b/compiler/ghci/Linker.lhs index 7b40c32f5e..220ac3b6ac 100644 --- a/compiler/ghci/Linker.lhs +++ b/compiler/ghci/Linker.lhs @@ -559,7 +559,7 @@ getLinkDeps hsc_env hpt pit maybe_normal_osuf span mods | mi_boot iface = link_boot_mod_error mod | otherwise - = follow_deps (map (mkModule this_pkg) boot_deps ++ mods) acc_mods' acc_pkgs' + = follow_deps (map (mkModule this_pkg) boot_deps' ++ mods) acc_mods' acc_pkgs' where pkg = modulePackageId mod iface = get_iface mod |