diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-02-12 16:03:59 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-02-12 16:03:59 -0400 |
commit | d1abee8f3ca83d48782df72406e81dc5e12a7595 (patch) | |
tree | 976555af794d00689ba8eaa7965fe7026bf2f8cf | |
parent | 3653b408156fa8d251bb233e29dd27da05d5db72 (diff) |
fix compile warning
-rw-r--r-- | Command/Fsck.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Fsck.hs b/Command/Fsck.hs index 5951a88be..49b49407a 100644 --- a/Command/Fsck.hs +++ b/Command/Fsck.hs @@ -143,7 +143,7 @@ performRemote key file backend numcopies remote = ( go True (Just tmpfile) , do warning "failed to download file from remote" - go True Nothing + void $ go True Nothing return False ) dispatch (Right False) = go False Nothing |