From: Zbigniew Jędrzejewski-Szmek Date: Mon, 2 Oct 2017 11:19:22 +0000 (+0200) Subject: hwdb: fix invalid encoding in usb.ids X-Git-Tag: v235~38^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5799609778500ac28e59c6828c255517dc12253;p=thirdparty%2Fsystemd.git hwdb: fix invalid encoding in usb.ids 0xB4 is the code point for "accent acute", but when encoded in utf-8, is is a multibyte sequence. A single 0xB4 byte is invalid (seems to be latin1). --- diff --git a/hwdb/usb.ids b/hwdb/usb.ids index 988b8c8df76..dae1bf350c7 100644 --- a/hwdb/usb.ids +++ b/hwdb/usb.ids @@ -19915,7 +19915,7 @@ HUT 07 Keyboard 031 \ and | (Backslash and Bar) 032 # and ~ (Hash and Tilde, Non-US Keyboard near right shift) 033 ; and : (Semicolon and Colon) - 034 ´ and " (Accent Acute and Double Quotes) + 034 ´ and " (Accent Acute and Double Quotes) 035 ` and ~ (Accent Grace and Tilde) 036 , and < (Comma and Less) 037 . and > (Period and Greater)