Fixed incorrect protoype in in-param test case.
authorJustin Seyster <jseyster@cs.sunysb.edu>
Wed, 27 Oct 2010 00:20:35 +0000 (20:20 -0400)
committerJustin Seyster <jseyster@cs.sunysb.edu>
Wed, 27 Oct 2010 00:20:35 +0000 (20:20 -0400)
test/allpc-inparam-hooks.c

index 78d634a28accfb6ff88e6d1553dc375ad6bf3729..f4ff42d637d410612a48e4d2baaae34de065f400 100644 (file)
@@ -1,17 +1,17 @@
 #include <stdint.h>
 #include <stdio.h>
 
-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);
 }