From 37e5b82a1b1fd27bda304c6480359c6f05192245 Mon Sep 17 00:00:00 2001 From: Justin Seyster Date: Tue, 26 Oct 2010 20:20:35 -0400 Subject: [PATCH] Fixed incorrect protoype in in-param test case. --- test/allpc-inparam-hooks.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/allpc-inparam-hooks.c b/test/allpc-inparam-hooks.c index 78d634a..f4ff42d 100644 --- a/test/allpc-inparam-hooks.c +++ b/test/allpc-inparam-hooks.c @@ -1,17 +1,17 @@ #include #include -void _advice_assign(int32_t a, double b) +void _advice_assign(int64_t a, double b) { printf("Assign advice: (%d, %f)\n", (int)a, b); } -void _advice_printf(int32_t a, double b) +void _advice_printf(int64_t a, double b) { printf("printf advice: (%d, %f)\n", (int)a, b); } -void _advice_exit(int32_t a, double b) +void _advice_exit(int64_t a, double b) { printf("Exit advice: (%d, %f)\n", (int)a, b); } -- 2.34.1