cls_longdouble_va.c (main): Fix format string.

* testsuite/libffi.call/cls_longdouble_va.c (main): Fix format string.

From-SVN: r154941
This commit is contained in:
Uros Bizjak 2009-12-03 11:35:31 +01:00 committed by Uros Bizjak
parent 54d1aa1f64
commit a27c404027
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-12-03 Uros Bizjak <ubizjak@gmail.com>
* testsuite/libffi.call/cls_longdouble_va.c (main): Fix format string.
2009-12-02 David Edelsohn <edelsohn@gnu.org>
* src/powerpc/ffi_darwin.c (ffi_prep_args): Fix typo in INT64

View File

@ -26,7 +26,7 @@ int main (void)
void* args[3];
ffi_type* arg_types[3];
char* format = "%L.1f\n";
char* format = "%.1Lf\n";
long double ldArg = 7;
ffi_arg res = 0;