svn commit: r307703 - head/sys/dev/netmap

Sepherosa Ziehau sephe at FreeBSD.org
Fri Oct 21 06:05:17 UTC 2016


Author: sephe
Date: Fri Oct 21 06:05:16 2016
New Revision: 307703
URL: https://svnweb.freebsd.org/changeset/base/307703

Log:
  netmap: Unbreak i386 LINT building
  
  Sponsored by:	Microsoft

Modified:
  head/sys/dev/netmap/netmap_freebsd.c

Modified: head/sys/dev/netmap/netmap_freebsd.c
==============================================================================
--- head/sys/dev/netmap/netmap_freebsd.c	Fri Oct 21 05:24:08 2016	(r307702)
+++ head/sys/dev/netmap/netmap_freebsd.c	Fri Oct 21 06:05:16 2016	(r307703)
@@ -1049,8 +1049,8 @@ nm_os_kthread_send_irq(struct nm_kthread
 	if (ctx->user_td && ctx->irq_fd > 0) {
 		err = kern_ioctl(ctx->user_td, ctx->irq_fd, ctx->irq_ioctl.com, (caddr_t)&ctx->irq_ioctl.data.msix);
 		if (err) {
-			D("kern_ioctl error: %d ioctl parameters: fd %d com %lu data %p",
-				err, ctx->irq_fd, ctx->irq_ioctl.com, &ctx->irq_ioctl.data);
+			D("kern_ioctl error: %d ioctl parameters: fd %d com %ju data %p",
+				err, ctx->irq_fd, (uintmax_t)ctx->irq_ioctl.com, &ctx->irq_ioctl.data);
 		}
 	}
 }


More information about the svn-src-head mailing list