diff options
author | 2009-04-18 07:30:50 +0000 | |
---|---|---|
committer | 2009-04-18 07:30:50 +0000 | |
commit | 63a2f76c12a6f91dca06b2df9ba593f891d64a63 (patch) | |
tree | b85b7554a4a6320e286df6e035fcccddc6f6dd5e | |
parent | Get rid of the final "Are you ready to install sets?" question by adding (diff) | |
download | wireguard-openbsd-63a2f76c12a6f91dca06b2df9ba593f891d64a63.tar.xz wireguard-openbsd-63a2f76c12a6f91dca06b2df9ba593f891d64a63.zip |
Fix tyop.
ok mglocker
-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); } |