diff options
author | Vinicius Costa Gomes <vinicius.gomes@openbossa.org> | 2012-02-10 18:39:49 -0300 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-14 14:28:58 +0200 |
commit | 42dc0063e496408b9bd9973fa4dda868af267bc1 (patch) | |
tree | a4e8cfa1c58cc33d27d9d9d1db1c30be73d42e52 /tools | |
parent | f7a79ac1fc2bddf73713832ea7f63259ce44b9b3 (diff) |
tools: Fix using old-style initializers
Diffstat (limited to 'tools')
-rw-r--r-- | tools/hcitool.c | 2 | ||||
-rw-r--r-- | tools/rfcomm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/hcitool.c b/tools/hcitool.c index 5189d8d1..66e5c207 100644 --- a/tools/hcitool.c +++ b/tools/hcitool.c @@ -74,7 +74,7 @@ static void usage(void); static int dev_info(int s, int dev_id, long arg) { - struct hci_dev_info di = { dev_id: dev_id }; + struct hci_dev_info di = { .dev_id = dev_id }; char addr[18]; if (ioctl(s, HCIGETDEVINFO, (void *) &di)) diff --git a/tools/rfcomm.c b/tools/rfcomm.c index 68004457..e73b0ba9 100644 --- a/tools/rfcomm.c +++ b/tools/rfcomm.c @@ -673,7 +673,7 @@ static void cmd_show(int ctl, int dev, bdaddr_t *bdaddr, int argc, char **argv) if (strcmp(argv[0], "all") == 0) print_dev_list(ctl, 0); else { - struct rfcomm_dev_info di = { id: atoi(argv[0]) }; + struct rfcomm_dev_info di = { .id = atoi(argv[0]) }; if (ioctl(ctl, RFCOMMGETDEVINFO, &di) < 0) { perror("Get info failed"); exit(1); |