svn commit: r351381 - head/sys/gdb

Conrad Meyer cem at FreeBSD.org
Thu Aug 22 04:31:08 UTC 2019


Author: cem
Date: Thu Aug 22 04:31:07 2019
New Revision: 351381
URL: https://svnweb.freebsd.org/changeset/base/351381

Log:
  Fix i386 build after r351368
  
  Reported by:	cy
  Submitted by:	cy

Modified:
  head/sys/gdb/gdb_main.c

Modified: head/sys/gdb/gdb_main.c
==============================================================================
--- head/sys/gdb/gdb_main.c	Thu Aug 22 03:33:10 2019	(r351380)
+++ head/sys/gdb/gdb_main.c	Thu Aug 22 04:31:07 2019	(r351381)
@@ -418,7 +418,7 @@ do_qXfer_threads_read(void)
 	 */
 	if (offset != 0) {
 		if (offset != ctx.qXfer.last_offset) {
-			printf("%s: Resumed offset %ju != expected %ju\n",
+			printf("%s: Resumed offset %ju != expected %zu\n",
 			    __func__, offset, ctx.qXfer.last_offset);
 			error = ESPIPE;
 			goto request_error;


More information about the svn-src-all mailing list