diff options
Diffstat (limited to 'compiler/GHC/Iface/Ext/Fields.hs')
-rw-r--r-- | compiler/GHC/Iface/Ext/Fields.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Iface/Ext/Fields.hs b/compiler/GHC/Iface/Ext/Fields.hs index 1cc1e94012..37322303d8 100644 --- a/compiler/GHC/Iface/Ext/Fields.hs +++ b/compiler/GHC/Iface/Ext/Fields.hs @@ -49,7 +49,7 @@ instance Binary ExtensibleFields where n <- get bh :: IO Int -- Get the names and field pointers: - header_entries <- replicateM n $ do + header_entries <- replicateM n $ (,) <$> get bh <*> get bh -- Seek to and get each field's payload: |