Fixed GT and LT

This commit is contained in:
obscuren
2014-06-18 00:25:58 +02:00
parent ca79360fd7
commit 8a885c2606
3 changed files with 26 additions and 13 deletions

View File

@ -226,7 +226,7 @@ var opCodeToString = map[OpCode]string{
func (o OpCode) String() string {
str := opCodeToString[o]
if len(str) == 0 {
return fmt.Sprintf("Missing opcode %#x", int(o))
return fmt.Sprintf("Missing opcode 0x%x", int(o))
}
return str