Sun Feb 1 08:40:46 EST 2009 Axel Simon <Axe...@en...>
* Don't use Word64 in printf as it makes ghc 6.6 fail.
hunk ./demo/gstreamer/VorbisPlay.hs 76
- printf "%10d / %10d\r" (position' `div` Gst.second) (duration' `div` Gst.second)
+ printf "%10d / %10d\r" [_$_]
+ (fromIntegral (position' `div` Gst.second)::Integer)
+ (fromIntegral (duration' `div` Gst.second)::Integer)
|