diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
 
 See full history at: <https://github.com/faylang/fay/commits>
 
+#### 0.23.1.14
+
+* Fix a compilation error introduced in 0.23.1.13.
+
 #### 0.23.1.13
 
 * Add support for haskell-src-exts 1.18.1.
diff --git a/fay.cabal b/fay.cabal
--- a/fay.cabal
+++ b/fay.cabal
@@ -1,5 +1,5 @@
 name:                fay
-version:             0.23.1.13
+version:             0.23.1.14
 synopsis:            A compiler for Fay, a Haskell subset that compiles to JavaScript.
 description:         Fay is a proper subset of Haskell which is type-checked
                      with GHC, and compiled to JavaScript. It is lazy, pure, has a Fay monad,
diff --git a/src/haskell-names/Language/Haskell/Names/Exports.hs b/src/haskell-names/Language/Haskell/Names/Exports.hs
--- a/src/haskell-names/Language/Haskell/Names/Exports.hs
+++ b/src/haskell-names/Language/Haskell/Names/Exports.hs
@@ -90,7 +90,7 @@
             , s
             )
         Global.Special {} -> error "Global.Special in export list?"
-    EThingWith l (EWildcard _ _) _cns -> error "Name resolution: CNames are not supported in wildcard exports"
+    EThingWith _ (EWildcard _ _) _qn _cns -> error "Name resolution: CNames are not supported in wildcard exports"
     EThingWith l (NoWildcard wcl) qn cns -> return $
       case Global.lookupType qn tbl of
         Global.Error err ->
