Skip to content

Commit

Permalink
Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Grebe committed Aug 31, 2017
1 parent 8b12858 commit 0ddf3ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion System/Hardware/Haskino/ShallowDeepPlugin/CommProcPass.hs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ commProcXlatArg (xlat, e) =
monadTyConId <- thNameToTyCon monadTyConTH
let tyCon_m = splitTyConApp_maybe $ exprType e
case tyCon_m of
Just (tyCon, [ty]) | tyCon == monadTyConId -> do
Just (tyCon, [_ty]) | tyCon == monadTyConId -> do
e' <- commProcExpr e
fmapRepBindReturn e'
_ -> repExpr e
Expand Down

0 comments on commit 0ddf3ec

Please sign in to comment.