From 6ed0ecaf3064ca9eb0e537db3a9264ef1f8eee36 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Thu, 22 Jan 2004 23:05:13 +0000 Subject: [PATCH] cls_uint.c (cls_ret_uint_fn): Treat result value as of type ffi_arg, not unsigned int. * testsuite/libffi.call/cls_uint.c (cls_ret_uint_fn): Treat result value as of type ffi_arg, not unsigned int. From-SVN: r76377 --- libffi/ChangeLog | 5 +++++ libffi/testsuite/libffi.call/cls_uint.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libffi/ChangeLog b/libffi/ChangeLog index f0147bc146b..863e7d1f421 100644 --- a/libffi/ChangeLog +++ b/libffi/ChangeLog @@ -1,3 +1,8 @@ +2004-01-22 Ulrich Weigand + + * testsuite/libffi.call/cls_uint.c (cls_ret_uint_fn): Treat result + value as of type ffi_arg, not unsigned int. + 2004-01-21 Michael Ritzert * ffi64.c (ffi_prep_args): Cast the RHS of an assignment instead diff --git a/libffi/testsuite/libffi.call/cls_uint.c b/libffi/testsuite/libffi.call/cls_uint.c index 501e179fd7f..e24e7bd44b6 100644 --- a/libffi/testsuite/libffi.call/cls_uint.c +++ b/libffi/testsuite/libffi.call/cls_uint.c @@ -10,10 +10,10 @@ static void cls_ret_uint_fn(ffi_cif* cif,void* resp,void** args, void* userdata) { - *(unsigned int*)resp = *(unsigned int *)args[0]; + *(ffi_arg *)resp = *(unsigned int *)args[0]; printf("%d: %d\n",*(unsigned int *)args[0], - *(unsigned int *)resp); + *(ffi_arg *)resp); } typedef unsigned int (*cls_ret_uint)(unsigned int);