Fix typo in error message

This commit is contained in:
Derek Parker 2014-08-05 14:13:03 -05:00
parent 2ed77e542c
commit 950556ea49

@ -195,7 +195,7 @@ func execExtendedOpcode(sm *StateMachine, instr byte, buf *bytes.Buffer) {
b, _ := buf.ReadByte()
fn, ok := extendedopcodes[b]
if !ok {
panic(fmt.Sprintf("Encountered unknown standard opcode %#v\n", b))
panic(fmt.Sprintf("Encountered unknown extended opcode %#v\n", b))
}
sm.LastWasStandard = false