From fc791074d943364a406f845732d551431071439f Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Wed, 24 Apr 2013 23:29:24 +0200 Subject: ltunify: print device type that got unpaired --- ltunify.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ltunify.c b/ltunify.c index b574435..8dcbf94 100644 --- a/ltunify.c +++ b/ltunify.c @@ -650,13 +650,15 @@ void perform_pair(int fd, u8 timeout) { } void perform_unpair(int fd, u8 device_index) { struct device *dev = &devices[device_index - 1]; + u8 dev_device_type = dev->device_type; // will be overwritten, therefore store it if (!dev->device_present) { printf("Device %#04x does not appear to be paired\n", device_index); return; } if (device_unpair(fd, device_index)) { if (!dev->device_present) { - printf("Device %#04x succesfully unpaired\n", device_index); + printf("Device %#04x %s successfully unpaired\n", device_index, + device_type_str(dev_device_type)); } else { fprintf(stderr, "Unpairing of %#04x possibly failed\n", device_index); } -- cgit v1.2.1