Module: wine Branch: master Commit: 7c44f3dcd6d790cdcecc9e93c65dadc6aac93481 URL: https://source.winehq.org/git/wine.git/?a=commit;h=7c44f3dcd6d790cdcecc9e93c...
Author: Francois Gouget fgouget@free.fr Date: Thu Aug 8 15:19:52 2019 +0200
hidclass.sys: A spelling fix in an ERR() message.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/hidclass.sys/descriptor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/hidclass.sys/descriptor.c b/dlls/hidclass.sys/descriptor.c index 5e164f3..af1679d 100644 --- a/dlls/hidclass.sys/descriptor.c +++ b/dlls/hidclass.sys/descriptor.c @@ -631,7 +631,7 @@ static int parse_descriptor(BYTE *descriptor, unsigned int index, unsigned int l { case TAG_LOCAL_USAGE: if (usages_top == sizeof(usages)) - ERR("More then 256 individual usages defined\n"); + ERR("More than 256 individual usages defined\n"); else { usages[usages_top++] = getValue(bSize, itemVal, FALSE);