]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/ContentCoding.hs
Suppress unused-do-bind warnings which GHC 6.12.1 emits
[Lucu.git] / Network / HTTP / Lucu / ContentCoding.hs
index 0771efa91ace3e052f43d5b298597270c04a3c79..27a89415a0d9e1e420ba7f57cd00815c594abb4a 100644 (file)
@@ -20,7 +20,7 @@ acceptEncodingListP = allowEOF $! listOf accEncP
 accEncP :: Parser (String, Maybe Double)
 accEncP = do coding <- token
              qVal   <- option Nothing
-                       $ do string ";q="
+                       $ do _ <- string ";q="
                             q <- qvalue
                             return $ Just q
              return (normalizeCoding coding, qVal)