Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Jul 2026 16:38:41 +0000
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: ba567508718a - main - uvideo: fix printf type
Message-ID:  <6a60f211.3ce1d.ba47ee5@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by bapt:

URL: https://cgit.FreeBSD.org/src/commit/?id=ba567508718a173e74754d1a010de2f94edd5603

commit ba567508718a173e74754d1a010de2f94edd5603
Author:     Baptiste Daroussin <bapt@FreeBSD.org>
AuthorDate: 2026-07-22 16:37:52 +0000
Commit:     Baptiste Daroussin <bapt@FreeBSD.org>
CommitDate: 2026-07-22 16:37:52 +0000

    uvideo: fix printf type
    
    Reported by:    vishwin
---
 sys/dev/usb/video/uvideo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/usb/video/uvideo.c b/sys/dev/usb/video/uvideo.c
index a00fcc5a7395..7c7268454ae2 100644
--- a/sys/dev/usb/video/uvideo.c
+++ b/sys/dev/usb/video/uvideo.c
@@ -3706,7 +3706,7 @@ uvideo_reqbufs(struct uvideo_softc *sc, struct v4l2_requestbuffers *rb)
 	sc->sc_mmap_kva = kva;
 	sc->sc_mmap_buffer_size = buf_size_total;
 
-	DPRINTFN(1, "allocated %d bytes mmap buffer at kva %#jx\n",
+	DPRINTFN(1, "allocated %zu bytes mmap buffer at kva %#jx\n",
 	    buf_size_total, (uintmax_t)kva);
 
 	for (i = 0; i < sc->sc_mmap_count; i++) {


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a60f211.3ce1d.ba47ee5>