* link.cc:
(_Jv_Linker::create_error_method): Added missing (void *) cast.
From-SVN: r110544
+2006-02-03 Robert Schuster <robertschuster@fsfe.org>
+
+ * link.cc:
+ (_Jv_Linker::create_error_method): Added missing (void *) cast.
+
2006-02-03 Robert Schuster <robertschuster@fsfe.org>
* include/jvm.h:
// Codepath for platforms which do not support (or want) libffi.
// You have to accept that it is impossible to provide the name
// of the missing class then.
- return _Jv_ThrowNoClassDefFoundError;
+ return (void *) _Jv_ThrowNoClassDefFoundError;
#endif
}