Module Name:    src
Committed By:   christos
Date:           Tue Jan 15 17:45:06 UTC 2013

Modified Files:
        src/sys/dev/usb: ehci.c

Log Message:
fix the fix of the fix of the format string.


To generate a diff of this commit:
cvs rdiff -u -r1.201 -r1.202 src/sys/dev/usb/ehci.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/ehci.c
diff -u src/sys/dev/usb/ehci.c:1.201 src/sys/dev/usb/ehci.c:1.202
--- src/sys/dev/usb/ehci.c:1.201	Tue Jan 15 05:41:57 2013
+++ src/sys/dev/usb/ehci.c	Tue Jan 15 12:45:05 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: ehci.c,v 1.201 2013/01/15 10:41:57 mbalmer Exp $ */
+/*	$NetBSD: ehci.c,v 1.202 2013/01/15 17:45:05 christos Exp $ */
 
 /*
  * Copyright (c) 2004-2012 The NetBSD Foundation, Inc.
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.201 2013/01/15 10:41:57 mbalmer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.202 2013/01/15 17:45:05 christos Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -2784,7 +2784,7 @@ ehci_alloc_sqtd_chain(struct ehci_pipe *
 #endif
 		}
 		DPRINTFN(4,("ehci_alloc_sqtd_chain: len=%d curlen=%d "
-			    "curoffs=%ld\n", len, curlen, (size_t)curoffs));
+			    "curoffs=%zu\n", len, curlen, (size_t)curoffs));
 
 		/*
 		 * Allocate another transfer if there's more data left,

Reply via email to