Fix clippy unused variable: instance

This commit is contained in:
Brandon Fish 2018-12-08 00:31:49 -06:00
parent a9d95b42c5
commit 6fd188a3f7

View File

@ -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 {