Commit a27c4040 by Uros Bizjak Committed by Uros Bizjak

cls_longdouble_va.c (main): Fix format string.

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

From-SVN: r154941
parent 54d1aa1f
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> 2009-12-02 David Edelsohn <edelsohn@gnu.org>
* src/powerpc/ffi_darwin.c (ffi_prep_args): Fix typo in INT64 * src/powerpc/ffi_darwin.c (ffi_prep_args): Fix typo in INT64
......
...@@ -26,7 +26,7 @@ int main (void) ...@@ -26,7 +26,7 @@ int main (void)
void* args[3]; void* args[3];
ffi_type* arg_types[3]; ffi_type* arg_types[3];
char* format = "%L.1f\n"; char* format = "%.1Lf\n";
long double ldArg = 7; long double ldArg = 7;
ffi_arg res = 0; ffi_arg res = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment