]> sigrok.org Git - libsigrok.git/commitdiff
Fix a typo in a for loop (wrong variable).
authorUwe Hermann <redacted>
Tue, 31 Mar 2015 20:58:50 +0000 (22:58 +0200)
committerUwe Hermann <redacted>
Tue, 31 Mar 2015 22:23:24 +0000 (00:23 +0200)
src/hardware/saleae-logic16/api.c

index 55e3d75237231446ec8f9f44919b2b9fdf81f05e..868348c5e169278ea9ae74dd74c261031e429374 100644 (file)
@@ -147,8 +147,8 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options)
        GSList *l, *devices, *conn_devices;
        struct libusb_device_descriptor des;
        libusb_device **devlist;
        GSList *l, *devices, *conn_devices;
        struct libusb_device_descriptor des;
        libusb_device **devlist;
-       int ret, j;
-       unsigned int i;
+       int ret;
+       unsigned int i, j;
        const char *conn;
        char connection_id[64];
 
        const char *conn;
        char connection_id[64];
 
@@ -204,7 +204,7 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options)
                sdi->driver = di;
                sdi->connection_id = g_strdup(connection_id);
 
                sdi->driver = di;
                sdi->connection_id = g_strdup(connection_id);
 
-               for (j = 0; i < ARRAY_SIZE(channel_names); j++)
+               for (j = 0; j < ARRAY_SIZE(channel_names); j++)
                        sr_channel_new(sdi, j, SR_CHANNEL_LOGIC, TRUE,
                                            channel_names[j]);
 
                        sr_channel_new(sdi, j, SR_CHANNEL_LOGIC, TRUE,
                                            channel_names[j]);