summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-05-10 13:08:16 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-05-10 13:08:24 -0400
commita4ae347a5ca8657f5bcd2561012b700fb95d79f6 (patch)
treedb1429e9d5cf24be27d84cc349b639319b9c4b6b
parentae8a630b3cfac9ed3ea8c3137619e13ee021071e (diff)
fix overindent
-rw-r--r--Command/Fsck.hs18
1 files changed, 9 insertions, 9 deletions
diff --git a/Command/Fsck.hs b/Command/Fsck.hs
index 0136175c7..fb8290281 100644
--- a/Command/Fsck.hs
+++ b/Command/Fsck.hs
@@ -248,16 +248,16 @@ verifyLocationLog' key desc present u updatestatus = do
uuids <- loggedLocations key
case (present, u `elem` uuids) of
(True, False) -> do
- fix InfoPresent
- -- There is no data loss, so do not fail.
- return True
+ fix InfoPresent
+ -- There is no data loss, so do not fail.
+ return True
(False, True) -> do
- fix InfoMissing
- warning $
- "** Based on the location log, " ++ desc
- ++ "\n** was expected to be present, " ++
- "but its content is missing."
- return False
+ fix InfoMissing
+ warning $
+ "** Based on the location log, " ++ desc
+ ++ "\n** was expected to be present, " ++
+ "but its content is missing."
+ return False
_ -> return True
where
fix s = do