The branch main has been updated by bapt: URL: https://cgit.FreeBSD.org/src/commit/?id=ba567508718a173e74754d1a010de2f94edd5603
commit ba567508718a173e74754d1a010de2f94edd5603 Author: Baptiste Daroussin <[email protected]> AuthorDate: 2026-07-22 16:37:52 +0000 Commit: Baptiste Daroussin <[email protected]> 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++) {
