diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-08-02 08:51:26 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-08-02 08:51:26 +0000 |
commit | 5b3a5af14f2c6c2a6a3bb06638e618363dc2fc09 (patch) | |
tree | eb4c4def6cdccaff5df9e24726ca94923bc2fdc2 /sys | |
parent | b3a4b02f94d605b9058554aacb872f061420e9b4 (diff) |
Fix typo. Reported by Maxim Belooussov.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/uvideo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c index 259f672f40b..7230049724f 100644 --- a/sys/dev/usb/uvideo.c +++ b/sys/dev/usb/uvideo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvideo.c,v 1.68 2008/08/01 12:16:52 mglocker Exp $ */ +/* $OpenBSD: uvideo.c,v 1.69 2008/08/02 08:51:25 mglocker Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> @@ -2047,7 +2047,7 @@ uvideo_debug_file_open(struct uvideo_softc *sc) NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, name, p); error = vn_open(&nd, O_CREAT | FWRITE | O_NOFOLLOW, S_IRUSR | S_IWUSR); if (error) { - DPRINTF(1, "%s: %s: can't creat debug file %s!\n", + DPRINTF(1, "%s: %s: can't create debug file %s!\n", DEVNAME(sc), __func__, name); return (error); } |