or long double (depending on some conditional code)
Rafael and I think that this cast should work.
p4raw-id: //depot/perl@21804
if ( !(width || left || plus || alt) && fill != '0'
&& has_precis && intsize != 'q' ) { /* Shortcuts */
if ( c == 'g') {
- Gconvert(nv, precis, 0, PL_efloatbuf);
+ Gconvert((NV)nv, precis, 0, PL_efloatbuf);
if (*PL_efloatbuf) /* May return an empty string for digits==0 */
goto float_converted;
} else if ( c == 'f' && !precis) {