Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tdammers committed Apr 12, 2023
1 parent 05e323b commit def0ed5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -106,7 +106,7 @@ withMLSBChunk :: forall b n n' m.
withMLSBChunk mlsb offset action
| offset < 0
= error "Negative offset not allowed"
| offset > parentSize - chunkSize
| offset > parentSize - chunkSize
= error $ "Overrun (" ++ show offset ++ " + " ++ show chunkSize ++ " > " ++ show parentSize ++ ")"
| otherwise
= withMLSB mlsb $ \ptr -> do
Expand Down

0 comments on commit def0ed5

Please sign in to comment.