diff options
author | Joey Hess <joey@kitenet.net> | 2012-06-20 13:13:40 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-06-20 13:13:40 -0400 |
commit | 75b6ee81f9d9b921106c829380e30445415ec2f7 (patch) | |
tree | 7cb7f30a4fc97c099df0b0aeec0376a696577a0b /Git | |
parent | 6d641f1ac0059fc03c06e582739a96198bb4d5ee (diff) |
avoid ByteString.Char8 where not needed
Its truncation behavior is a red flag, so avoid using it in these places
where only raw ByteStrings are used, without looking at the data inside.
Diffstat (limited to 'Git')
-rw-r--r-- | Git/CatFile.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Git/CatFile.hs b/Git/CatFile.hs index 8a320a712..e667b2087 100644 --- a/Git/CatFile.hs +++ b/Git/CatFile.hs @@ -15,8 +15,8 @@ module Git.CatFile ( ) where import System.IO -import qualified Data.ByteString.Char8 as S -import qualified Data.ByteString.Lazy.Char8 as L +import qualified Data.ByteString as S +import qualified Data.ByteString.Lazy as L import Common import Git |