mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
Fix clippy unused variable: instance
This commit is contained in:
parent
a9d95b42c5
commit
6fd188a3f7
@ -111,7 +111,7 @@ pub extern "C" fn ___build_environment(environ: c_int) {
|
|||||||
debug!("emscripten::___build_environment {}", environ);
|
debug!("emscripten::___build_environment {}", environ);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub extern "C" fn _sysconf(name: c_int, instance: &mut Instance) -> c_long {
|
pub extern "C" fn _sysconf(name: c_int, _instance: &mut Instance) -> c_long {
|
||||||
debug!("emscripten::_sysconf {}", name);
|
debug!("emscripten::_sysconf {}", name);
|
||||||
// TODO: Implement like emscripten expects regarding memory/page size
|
// TODO: Implement like emscripten expects regarding memory/page size
|
||||||
unsafe {
|
unsafe {
|
||||||
|
Loading…
Reference in New Issue
Block a user