Fix compile errors following function prototype change.
authorflorian <florian@a5019735-40e9-0310-863c-91ae7b9d1cf9>
Sun, 14 Oct 2012 02:58:42 +0000 (02:58 +0000)
committerflorian <florian@a5019735-40e9-0310-863c-91ae7b9d1cf9>
Sun, 14 Oct 2012 02:58:42 +0000 (02:58 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13040 a5019735-40e9-0310-863c-91ae7b9d1cf9

drd/tests/unit_bitmap.c
drd/tests/unit_vc.c
none/tests/valgrind_cpp_test.cpp

index 6de61acdba4a53d4e446d5136be08fe5e25d156d..29892e47c6487140f7e3ac4f15822ed169e41f62 100644 (file)
@@ -28,8 +28,8 @@ void* VG_(malloc)(HChar* cc, SizeT nbytes)
 { return malloc(nbytes); }
 void  VG_(free)(void* p)
 { return free(p); }
-void  VG_(assert_fail)(Bool isCore, const Char* assertion, const Char* file,
-                       Int line, const Char* function, const HChar* format,
+void  VG_(assert_fail)(Bool isCore, const HChar* assertion, const HChar* file,
+                       Int line, const HChar* function, const HChar* format,
                        ...)
 {
   fprintf(stderr,
index 353ce4b3a9a33d0526b5fb2ba92e74e97fd5032d..d9d9bb5dd62a151e452c420678b0dea509a1e257 100644 (file)
@@ -16,8 +16,8 @@ void* VG_(realloc)(HChar* cc, void* p, SizeT size)
 { return realloc(p, size); }
 void  VG_(free)(void* p)
 { return free(p); }
-void  VG_(assert_fail)(Bool isCore, const Char* assertion, const Char* file,
-                       Int line, const Char* function, const HChar* format,
+void  VG_(assert_fail)(Bool isCore, const HChar* assertion, const HChar* file,
+                       Int line, const HChar* function, const HChar* format,
                        ...)
 {
   fprintf(stderr,
index 41a522b5ed939e96ec563691f4eb5901ca48edab..5328829fb157157fd9eb1c6ef402c59c91106f54 100644 (file)
@@ -40,8 +40,8 @@ int main(int argc, char** argv)
   return 0;
 }
 
-void VG_(assert_fail)(Bool isCore, const Char* expr, const Char* file,
-                      Int line, const Char* fn, const HChar* format, ... )
+void VG_(assert_fail)(Bool isCore, const HChar* expr, const HChar* file,
+                      Int line, const HChar* fn, const HChar* format, ... )
 {
   abort();
 }