summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormglocker <mglocker@openbsd.org>2016-06-02 17:39:37 +0000
committermglocker <mglocker@openbsd.org>2016-06-02 17:39:37 +0000
commitb20ab6b78a1ebe74eb61476be5c41d25aced0b80 (patch)
treed992d8d9c184521e0f750804ee1e0fdf2327061d
parentPrevent vsize_t underflow when checking RLIMIT_DATA, which made the (diff)
downloadwireguard-openbsd-b20ab6b78a1ebe74eb61476be5c41d25aced0b80.tar.xz
wireguard-openbsd-b20ab6b78a1ebe74eb61476be5c41d25aced0b80.zip
Fix typo in comment.
From Lubomir Rintel via Patrick Keshish
-rw-r--r--sys/dev/usb/utvfu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/utvfu.c b/sys/dev/usb/utvfu.c
index 8ece3c9ab03..d9e24348b9e 100644
--- a/sys/dev/usb/utvfu.c
+++ b/sys/dev/usb/utvfu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: utvfu.c,v 1.2 2016/06/01 23:54:09 deraadt Exp $ */
+/* $OpenBSD: utvfu.c,v 1.3 2016/06/02 17:39:37 mglocker Exp $ */
/*
* Copyright (c) 2013 Lubomir Rintel
* Copyright (c) 2013 Federico Simoncelli
@@ -346,7 +346,7 @@ utvfu_setup_capture(struct utvfu_softc *sc)
* Copy data from chunk into a frame buffer, deinterlacing the data
* into every second line. Unfortunately, they don't align nicely into
* 720 pixel lines, as the chunk is 240 words long, which is 480 pixels.
- * Therefore, we break down the chunk into two halves before copyting,
+ * Therefore, we break down the chunk into two halves before copying,
* so that we can interleave a line if needed.
*
* Each "chunk" is 240 words; a word in this context equals 4 bytes.