Skip to content

Commit

Permalink
Missed compile check of flight-track, #249.
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed Mar 16, 2019
1 parent b2ce6fa commit 0a0b84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion track/library/Flight/TrackLog.hs
Expand Up @@ -228,7 +228,7 @@ readDegMin :: Degree -> Minute -> Rational
readDegMin (Degree d) (Minute m) =
d' % 1 + toRational m' / 60000
where
d' = read d :: Integer
d' = fromIntegral d
m' = read m :: Double

readLat :: Lat -> K.Latitude
Expand Down

0 comments on commit 0a0b84d

Please sign in to comment.