From c5799609778500ac28e59c6828c255517dc12253 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 2 Oct 2017 13:19:22 +0200 Subject: [PATCH] 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). --- hwdb/usb.ids | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwdb/usb.ids b/hwdb/usb.ids index 988b8c8..dae1bf3 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) -- 2.7.4