remove extra semicolon

This commit is contained in:
Joel Dice 2009-12-02 23:09:05 -07:00
parent 7a3bf85caf
commit f0e66eea37

View File

@ -1886,7 +1886,7 @@ makeCurrentContinuation(MyThread* t, void** targetIp, void** targetBase,
*targetIp = ip;
*targetBase = base;
*targetStack = static_cast<void**>(stack)
+ t->arch->frameReturnAddressSize();;
+ t->arch->frameReturnAddressSize();
}
}