diff options
author | hselasky <hselasky@FreeBSD.org> | 2015-04-21 06:11:47 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2015-04-21 06:11:47 +0000 |
commit | 75ca3c46dce156329b47d24d232c226d0758aedd (patch) | |
tree | e42e543b27da1b8015ce0385608413611a9208e0 /sys/dev/usb/video | |
parent | 41000c8d1bea35160ea9be62a96eef50c47b6d77 (diff) | |
download | FreeBSD-src-75ca3c46dce156329b47d24d232c226d0758aedd.zip FreeBSD-src-75ca3c46dce156329b47d24d232c226d0758aedd.tar.gz |
Don't print uninitialized variables.
CID: 1295242
Diffstat (limited to 'sys/dev/usb/video')
-rw-r--r-- | sys/dev/usb/video/udl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/video/udl.c b/sys/dev/usb/video/udl.c index 4b736b3..69e2429 100644 --- a/sys/dev/usb/video/udl.c +++ b/sys/dev/usb/video/udl.c @@ -1082,8 +1082,7 @@ udl_select_mode(struct udl_softc *sc) } if (index == UDL_MAX_MODES) { - DPRINTF("no mode line found for %dx%d @ %dHz!\n", - mode.hdisplay, mode.vdisplay, mode.hz); + DPRINTF("no mode line found\n"); i = 0; while (i < sc->sc_edid_info.edid_nmodes) { |