aboutsummaryrefslogtreecommitdiff
path: root/Utility/Exception.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-04-26 19:25:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-04-26 19:25:05 -0400
commitc7999da69b039829acc3b7da8005224af5bf6ed8 (patch)
treeb17c7d897d95503f1af66efc98e28da1179d798c /Utility/Exception.hs
parenta885d67e97c63d8fff657f6eb8d503fd91b0b42c (diff)
hlint
Diffstat (limited to 'Utility/Exception.hs')
-rw-r--r--Utility/Exception.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Exception.hs b/Utility/Exception.hs
index cf2c615c7..6f3c059f6 100644
--- a/Utility/Exception.hs
+++ b/Utility/Exception.hs
@@ -18,7 +18,7 @@ import Utility.Data
{- Catches IO errors and returns a Bool -}
catchBoolIO :: IO Bool -> IO Bool
-catchBoolIO a = catchDefaultIO False a
+catchBoolIO = catchDefaultIO False
{- Catches IO errors and returns a Maybe -}
catchMaybeIO :: IO a -> IO (Maybe a)