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

Li-Wen Hsu lwhsu at FreeBSD.org
Wed Apr 25 19:46:40 UTC 2018


Author: lwhsu (ports committer)
Date: Wed Apr 25 19:46:39 2018
New Revision: 333010
URL: https://svnweb.freebsd.org/changeset/base/333010

Log:
  Fix mips32 build after r332951.
  
  Approved by:	jhb

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

Modified: head/sys/mips/mips/pm_machdep.c
==============================================================================
--- head/sys/mips/mips/pm_machdep.c	Wed Apr 25 18:59:29 2018	(r333009)
+++ head/sys/mips/mips/pm_machdep.c	Wed Apr 25 19:46:39 2018	(r333010)
@@ -264,7 +264,7 @@ ptrace_single_step(struct thread *td)
 		va = locr0->pc + 4;
 	}
 	if (td->td_md.md_ss_addr) {
-		printf("SS %s (%d): breakpoint already set at %lx (va %lx)\n",
+		printf("SS %s (%d): breakpoint already set at %zx (va %zx)\n",
 		    p->p_comm, p->p_pid, td->td_md.md_ss_addr, va); /* XXX */
 		error = EFAULT;
 		goto out;
@@ -500,7 +500,7 @@ ptrace_clear_single_step(struct thread *td)
 
 	if (error != 0) {
 		log(LOG_ERR,
-		    "SS %s %d: can't restore instruction at %lx: %x\n",
+		    "SS %s %d: can't restore instruction at %zx: %x\n",
 		    p->p_comm, p->p_pid, td->td_md.md_ss_addr,
 		    td->td_md.md_ss_instr);
 	}


More information about the svn-src-all mailing list