Fix for slightly mangled merge.

--HG--
extra : convert_revision : 1dea04ca222dd423c3d462114bc1c65afa52825d
This commit is contained in:
Gabe Black 2006-11-08 08:25:37 -05:00
parent b82fa633bb
commit 9375caa3f1

View file

@ -228,9 +228,10 @@ class FillNOther : public EnumeratedFault<FillNOther>
class TrapInstruction : public EnumeratedFault<TrapInstruction>
{
public:
TrapInstruction(uint32_t n, uint64_t syscall) :
EnumeratedFault<TrapInstruction>(n), syscall_num(syscall) {;}
TrapInstruction(uint32_t n) :
EnumeratedFault<TrapInstruction>(n) {;}
};