Fix compilation error var name

This commit is contained in:
Brandon Fish
2019-01-31 20:20:58 -06:00
parent 8725fef474
commit 54fdbf8813

View File

@ -119,7 +119,7 @@ pub extern "C" fn abort_stack_overflow(_what: c_int, ctx: &mut Ctx) {
);
}
pub extern "C" fn _llvm_trap(_ctx: &mut Ctx) {
pub extern "C" fn _llvm_trap(ctx: &mut Ctx) {
debug!("emscripten::_llvm_trap");
abort_with_message("abort!", ctx);
}