svn commit: r229798 - head/sys/mips/mips

Oleksandr Tymoshenko gonzo at FreeBSD.org
Sun Jan 8 00:34:40 UTC 2012


Author: gonzo
Date: Sun Jan  8 00:34:39 2012
New Revision: 229798
URL: http://svn.freebsd.org/changeset/base/229798

Log:
  Fix DDB x/i addr[,count] command for count > 1 case

Modified:
  head/sys/mips/mips/db_disasm.c

Modified: head/sys/mips/mips/db_disasm.c
==============================================================================
--- head/sys/mips/mips/db_disasm.c	Sun Jan  8 00:14:45 2012	(r229797)
+++ head/sys/mips/mips/db_disasm.c	Sun Jan  8 00:34:39 2012	(r229798)
@@ -388,5 +388,6 @@ md_printins(int ins, int mdbdot)
 		    reg_name[i.IType.rt], reg_name[i.IType.rs],
 		    (short)i.IType.imm);
 	}
+	db_printf("\n");
 	return (delay);
 }


More information about the svn-src-all mailing list