Commit 7dce5a72 authored by Geoff Thorpe's avatar Geoff Thorpe
Browse files

Gets around VC++ compiler pickiness. (long != double)

PR:
parent 3813046d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -618,7 +618,7 @@ fmtfp(

    if (fracpart >= pow10(max)) {
        intpart++;
        fracpart -= pow10(max);
        fracpart -= (long)pow10(max);
    }

    /* convert integer part */