diff options
author | Michael Knudsen <mk@cvs.openbsd.org> | 2009-04-18 07:30:51 +0000 |
---|---|---|
committer | Michael Knudsen <mk@cvs.openbsd.org> | 2009-04-18 07:30:51 +0000 |
commit | 2fd7463ac17fc0a003ec760256b194df4e873806 (patch) | |
tree | b39f008b888786474dee2dee767e1ec4c4da7660 /sys/dev | |
parent | 323b95fb7035d450552ebaa22d3864af4ad940c2 (diff) |
Fix tyop.
ok mglocker
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/uvideo.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c index b73ec910e5c..71042899b69 100644 --- a/sys/dev/usb/uvideo.c +++ b/sys/dev/usb/uvideo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvideo.c,v 1.124 2009/03/29 16:45:35 mglocker Exp $ */ +/* $OpenBSD: uvideo.c,v 1.125 2009/04/18 07:30:50 mk Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> @@ -1526,7 +1526,8 @@ uvideo_vs_alloc_frame(struct uvideo_softc *sc) /* don't overflow the upper layer frame buffer */ if (sc->sc_max_fbuf_size < fb->buf_size && sc->sc_mmap_flag == 0) { - printf("%s: sofware video buffer is too small!\n", DEVNAME(sc)); + printf("%s: software video buffer is too small!\n", + DEVNAME(sc)); return (USBD_NOMEM); } |