diff options
| author | Bdale Garbee <bdale@gag.com> | 2015-07-16 13:36:59 -0600 | 
|---|---|---|
| committer | Bdale Garbee <bdale@gag.com> | 2015-07-16 13:36:59 -0600 | 
| commit | f4f0f044df1251d64d44bf62d25b488fd04a05c8 (patch) | |
| tree | 12efee1447a67d8cf37b6f447c011708264b8266 /ao-tools/ao-list/ao-list.c | |
| parent | b25690062ac04a588ad4d11740597c20e516eb1a (diff) | |
| parent | 570daace9caf7647a09c53d5c75593cc4c98b93b (diff) | |
Merge branch 'branch-1.6' into debian
Diffstat (limited to 'ao-tools/ao-list/ao-list.c')
| -rw-r--r-- | ao-tools/ao-list/ao-list.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/ao-list/ao-list.c b/ao-tools/ao-list/ao-list.c index c4b43d8f..4c065e79 100644 --- a/ao-tools/ao-list/ao-list.c +++ b/ao-tools/ao-list/ao-list.c @@ -28,12 +28,12 @@ main (int argc, char **argv)  	struct cc_usbdev	*dev;  	int			i; -	devs = cc_usbdevs_scan(); +	devs = cc_usbdevs_scan(TRUE);  	if (devs) {  		for (i = 0; i < devs->ndev; i++) {  			dev = devs->dev[i];  			printf ("%-20.20s %6d %s\n", -				dev->product, dev->serial, dev->tty); +				dev->product, dev->serial, dev->tty ? dev->tty : "(none)");  		}  		cc_usbdevs_free(devs);  	}  | 
