remove extraneous "+1"; column numbers start at zero
authorSimon Marlow <simonmar@microsoft.com>
Tue, 17 Apr 2007 14:35:12 +0000 (14:35 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Tue, 17 Apr 2007 14:35:12 +0000 (14:35 +0000)
compiler/deSugar/Coverage.lhs

index 8624780..ce975fe 100644 (file)
@@ -553,7 +553,7 @@ mkHpcPos pos
    start = srcSpanStart pos
    end   = srcSpanEnd pos
    hpcPos = toHpcPos ( srcLocLine start
-                    , srcLocCol start + 1
+                    , srcLocCol start
                     , srcLocLine end
                     , srcLocCol end
                     )