From 30ec4e75a961b710ec13c52d798fabcadd601997 Mon Sep 17 00:00:00 2001 From: slava Date: Sun, 19 Feb 2006 06:46:11 +0000 Subject: [PATCH] Fix typo in ffi tests --- native/ffi_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/ffi_test.c b/native/ffi_test.c index 9faecb97c4..4996d9c609 100644 --- a/native/ffi_test.c +++ b/native/ffi_test.c @@ -138,7 +138,7 @@ float callback_test_6(float (*callback)(void)) return x; } -int callback_test_7(double (*callback)(void)) +double callback_test_7(double (*callback)(void)) { double x; printf("callback_test_7 entry\n");