diff options
author | joe <joe@FreeBSD.org> | 2002-04-25 12:51:08 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-04-25 12:51:08 +0000 |
commit | 64b8d0cf04dd9b31760a6e9d409cdbfbebd168d2 (patch) | |
tree | 16f6e7cc03dc94a9bdbcc344ce93afe895d0fb2c /sys/dev/usb/usb_subr.c | |
parent | ab5f9fb92ed3a493186ffcb89b00c9f8175d6dbb (diff) | |
download | FreeBSD-src-64b8d0cf04dd9b31760a6e9d409cdbfbebd168d2.zip FreeBSD-src-64b8d0cf04dd9b31760a6e9d409cdbfbebd168d2.tar.gz |
MFNetBSD:
revision 1.96
date: 2001/11/22 21:59:33; author: augustss; state: Exp; lines: +3 -3
Correct a comment.
Diffstat (limited to 'sys/dev/usb/usb_subr.c')
-rw-r--r-- | sys/dev/usb/usb_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c index 92b04c7..ed516e3 100644 --- a/sys/dev/usb/usb_subr.c +++ b/sys/dev/usb/usb_subr.c @@ -1,4 +1,4 @@ -/* $NetBSD: usb_subr.c,v 1.95 2001/11/20 16:09:01 augustss Exp $ */ +/* $NetBSD: usb_subr.c,v 1.96 2001/11/22 21:59:33 augustss Exp $ */ /* $FreeBSD$ */ /* @@ -184,7 +184,7 @@ usbd_get_string(usbd_device_handle dev, int si, char *buf) /* Set up default language */ err = usbd_get_string_desc(dev, USB_LANGUAGE_TABLE, 0, &us); if (err || us.bLength < 4) { - dev->langid = 0; /* Well, just pick English then */ + dev->langid = 0; /* Well, just pick something then */ } else { /* Pick the first language as the default. */ dev->langid = UGETW(us.bString[0]); |