Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! Fix -Wincomplete-uni-patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
cblp committed Jan 10, 2018
1 parent 8e7e063 commit 40efb9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exe/json2yaml.hs
Expand Up @@ -9,7 +9,7 @@ main :: IO ()
main = do
args <- getArgs
(input, output) <- case args ++ replicate (2 - length args) "-" of
[i, o] -> pure (i, o)
[i, o] -> return (i, o)
_ -> fail "Usage: json2yaml [in] [out]"
mval <- fmap J.decode $
case input of
Expand Down

0 comments on commit 40efb9e

Please sign in to comment.