summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2004-04-25 14:12:26 +0000
committerMarcel Holtmann <marcel@holtmann.org>2004-04-25 14:12:26 +0000
commit7b44fb1986b0bae4fc37130c22a975972261f851 (patch)
tree5d9976725c45eed08cf099b941c9f02e1792fe80 /tools
parentfab001c1250c40ef96b85a60a7b8111596688452 (diff)
The lmp_featurestostr() now uses a character number as width
Diffstat (limited to 'tools')
-rw-r--r--tools/hciconfig.c2
-rw-r--r--tools/hcitool.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/hciconfig.c b/tools/hciconfig.c
index 6ab7f190..7e6f6849 100644
--- a/tools/hciconfig.c
+++ b/tools/hciconfig.c
@@ -113,7 +113,7 @@ void print_dev_features(struct hci_dev_info *di, int format)
di->features[2], di->features[3],
di->features[4], di->features[5],
di->features[6], di->features[7],
- lmp_featurestostr(di->features, "\t\t", 3));
+ lmp_featurestostr(di->features, "\t\t", 63));
}
}
diff --git a/tools/hcitool.c b/tools/hcitool.c
index 37450098..b01f78d6 100644
--- a/tools/hcitool.c
+++ b/tools/hcitool.c
@@ -465,7 +465,7 @@ static void cmd_info(int dev_id, int argc, char **argv)
printf("\tFeatures: 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x\n%s\n",
features[0], features[1], features[2], features[3],
features[4], features[5], features[6], features[7],
- lmp_featurestostr(features, "\t\t", 3));
+ lmp_featurestostr(features, "\t\t", 63));
}
if (cc)