diff options
| author | Daniel Gröber <dxld@darkboxed.org> | 2015-04-29 01:47:12 +0200 | 
|---|---|---|
| committer | Daniel Gröber <dxld@darkboxed.org> | 2015-04-29 01:47:12 +0200 | 
| commit | b8e864f7622c2f0238d628bbe6fb594eba2e8e20 (patch) | |
| tree | 25494e09f74d429025391b0efeae9aaef7b5c127 | |
| parent | f73abdd70ef078d91c26f23938158511e70b01a3 (diff) | |
Fix printf warning
| -rw-r--r-- | CabalHelper/Wrapper.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/CabalHelper/Wrapper.hs b/CabalHelper/Wrapper.hs index f14ae6a..07a2056 100644 --- a/CabalHelper/Wrapper.hs +++ b/CabalHelper/Wrapper.hs @@ -219,7 +219,7 @@ errorInstallCabal cabalVer distdir = panic $ printf "\  \        $ cabal clean && cabal configure\n\  \    You might also have to install some version of the Cabal to do this:\n\  \        $ cabal install Cabal\n\ -\\n" sver (distdir </> "setup-config") sver sver +\\n" sver sver   where     sver = showVersion cabalVer | 
