From 58b05365235ae6ea3940430700a642dfe5593986 Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Wed, 25 Apr 2007 16:12:44 +0000 Subject: [PATCH] Fix misleading debug trace --- compiler/types/Type.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/types/Type.lhs b/compiler/types/Type.lhs index db90b8c..7d42d8c 100644 --- a/compiler/types/Type.lhs +++ b/compiler/types/Type.lhs @@ -1221,7 +1221,7 @@ zipTopTvSubst :: [TyVar] -> [Type] -> TvSubst zipTopTvSubst tyvars tys #ifdef DEBUG | length tyvars /= length tys - = pprTrace "zipOpenTvSubst" (ppr tyvars $$ ppr tys) emptyTvSubst + = pprTrace "zipTopTvSubst" (ppr tyvars $$ ppr tys) emptyTvSubst | otherwise #endif = TvSubst emptyInScopeSet (zipTyEnv tyvars tys) -- 1.7.10.4