aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-bthci_cmd.c')
-rw-r--r--epan/dissectors/packet-bthci_cmd.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c
index 4fd223acaf..8c3a4be3e8 100644
--- a/epan/dissectors/packet-bthci_cmd.c
+++ b/epan/dissectors/packet-bthci_cmd.c
@@ -1206,9 +1206,12 @@ static const value_string cmd_authentication_enable_values[] = {
{0, NULL }
};
+/* XXX - Should be pulled from utf8_entities.h */
+#define UTF8_MICRO_SIGN "\xc2\xb5" /* 181 / 0xb5 */
+
static const value_string cmd_input_coding_values[] = {
{0x0, "Linear" },
- {0x1, "\xb5-law" },
+ {0x1, UTF8_MICRO_SIGN "-law" },
{0x2, "A-law" },
{0, NULL }
};
@@ -1232,7 +1235,7 @@ value_string_ext bthci_cmd_input_sample_size_vals_ext = VALUE_STRING_EXT_INIT(cm
static const value_string cmd_air_coding_format_values[] = {
{0x0, "CVSD" },
- {0x1, "\xb5-law" },
+ {0x1, UTF8_MICRO_SIGN "-law" },
{0x2, "A-law" },
{0x3, "Transparent" },
{0, NULL }