diff options
author | Anderson Lizardo <anderson.lizardo@openbossa.org> | 2013-10-01 10:11:22 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2013-10-02 14:09:01 +0300 |
commit | fd8d0713e8f74c1406fcef30b1e3aabd0ba746e3 (patch) | |
tree | 1abebe33a844b051dfbb4960976c8fbe33216e64 /lib | |
parent | 703f25174dcc8bf4641056f6859363a18dce3d82 (diff) |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bluetooth.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: |