X86: Fix the debugging microops. The debug functions can't handle a string object format.

This commit is contained in:
Gabe Black
2008-10-09 00:05:39 -07:00
parent 569db520ad
commit e1b306fa53

View File

@@ -104,7 +104,7 @@ def template MicroDebugExecute {{
%(op_decl)s
%(op_rd)s
if (%(cond_test)s) {
%(func)s(message + "\n");
%(func)s("%s\n", message);
}
return NoFault;
}