The SingleSource/Regression/C/callargs.c test uses the %lf format specifier
for printf. However, "man printf" does not specify what this means. Shouldn't
the following patch be applied?
- Volodya
callargs.diff (1.43 KB)
The SingleSource/Regression/C/callargs.c test uses the %lf format specifier
for printf. However, "man printf" does not specify what this means. Shouldn't
the following patch be applied?
- Volodya
callargs.diff (1.43 KB)
%lf should be used for long double. This test is passing in doubles
though, so it should use %f like normal. Thanks for the patch, it's
now applied.
-Chris