From fd8d0713e8f74c1406fcef30b1e3aabd0ba746e3 Mon Sep 17 00:00:00 2001 From: Anderson Lizardo Date: Tue, 1 Oct 2013 10:11:22 -0400 Subject: [PATCH] lib: Fix invalid "whitespace" on company identifier string Somehow, the invalid multibyte sequence "\xC2\xA0" (which is displayed as a whitespace) was inserted on a company identifier string. Fix this to avoid a bogus diff when running tools/update_compids.sh. --- lib/bluetooth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bluetooth.c b/lib/bluetooth.c index bdc611a19..62c5c0079 100644 --- a/lib/bluetooth.c +++ b/lib/bluetooth.c @@ -682,7 +682,7 @@ const char *bt_compidtostr(int compid) case 210: return "Dialog Semiconductor B.V."; case 211: - return "Taixingbang Technology (HK) Co,. LTD."; + return "Taixingbang Technology (HK) Co,. LTD."; case 212: return "Kawantech"; case 213: -- 2.47.3