Fix kdbg disasm bug, patch by SamB

See issue #2408 for more details.

svn path=/trunk/; revision=28427
This commit is contained in:
Ziliang Guo
2007-08-19 22:51:10 +00:00
parent b4c3f2b5e3
commit 263feb7b7d

View File

@@ -62,7 +62,7 @@ KdbpPrintDisasm(void* Ignored, const char* fmt, ...)
va_start(ap, fmt);
ret = vsprintf(buffer, fmt, ap);
DbgPrint(buffer);
DbgPrint("%s", buffer);
va_end(ap);
return(ret);
}