mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2025-04-21 12:27:27 +03:00
Updated code calling opk_extract_file().
I changed the return type from char* to void* in libopk, now updating the gmenu2x code to match.
This commit is contained in:
@@ -387,7 +387,8 @@ void LinkApp::showManual() {
|
||||
return;
|
||||
}
|
||||
|
||||
buf = ptr = opk_extract_file(pdata, manual.c_str());
|
||||
buf = ptr = reinterpret_cast<char *>(
|
||||
opk_extract_file(pdata, manual.c_str()));
|
||||
opk_close(pdata);
|
||||
|
||||
if (!buf) {
|
||||
|
||||
Reference in New Issue
Block a user