userret() now only takes 2 parameters.

This commit is contained in:
Olivier Houchard 2006-03-01 18:33:45 +00:00
parent d48fe4c520
commit c2d5c96b29

@ -212,7 +212,7 @@ undefinedinstruction(trapframe_t *frame)
ksi.ksi_code = ILL_ILLADR;
ksi.ksi_addr = (u_int32_t *)(intptr_t) fault_pc;
trapsignal(td, &ksi);
userret(td, frame, 0);
userret(td, frame);
return;
}
@ -317,6 +317,6 @@ undefinedinstruction(trapframe_t *frame)
}
#else
userret(td, frame, 0);
userret(td, frame);
#endif
}