Commit e3e1fa67 by Robert Schuster Committed by Robert Schuster

2006-02-03 Robert Schuster <robertschuster@fsfe.org>

        * link.cc:
        (_Jv_Linker::create_error_method): Added missing (void *) cast.

From-SVN: r110544
parent a7f3ff76
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:
(_Jv_Linker::create_error_method): New method declaration.
* link.cc:
......
......@@ -996,7 +996,7 @@ _Jv_Linker::create_error_method (_Jv_Utf8Const *class_name)
// 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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment