ao-tools: Add lots of compiler warning flags to ao-tools build
[fw/altos] / ao-tools / ao-list / ao-list.c
index c4b43d8fb1caf6416e5f13dad9a33ad2b2ca8b40..0a970070823edcdbb71993b477fdd5c7e0fb8287 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -28,12 +29,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);
        }