Fix unused variable warnings

This commit is contained in:
Brandon Fish
2019-01-27 10:58:52 -06:00
parent 6bbdaa1c53
commit 384c27c4e3
7 changed files with 47 additions and 47 deletions

View File

@ -40,7 +40,7 @@ pub extern "C" fn abort_on_cannot_grow_memory(_ctx: &mut Ctx) -> u32 {
}
/// emscripten: ___map_file
pub extern "C" fn ___map_file(one: u32, two: u32, _ctx: &mut Ctx) -> c_int {
pub extern "C" fn ___map_file(_one: u32, _two: u32, _ctx: &mut Ctx) -> c_int {
debug!("emscripten::___map_file");
// NOTE: TODO: Em returns -1 here as well. May need to implement properly
-1