This is an automated email from Gerrit.

Marc Schink (openocd-...@marcschink.de) just uploaded a new patch set to 
Gerrit, which you can find at http://openocd.zylin.com/5154

-- gerrit

commit caa8bfa0069b57f1470879bcb4076553c3f63de4
Author: Marc Schink <openocd-...@marcschink.de>
Date:   Mon May 6 17:01:22 2019 +0200

    jtag/drivers/jtag_usb_common: Fix variable name
    
    Change-Id: I3773afa75724dc71801af39cc9135b7b9585bc47
    Signed-off-by: Marc Schink <openocd-...@marcschink.de>

diff --git a/src/jtag/drivers/jtag_usb_common.c 
b/src/jtag/drivers/jtag_usb_common.c
index 637e6c7..74b89cc 100644
--- a/src/jtag/drivers/jtag_usb_common.c
+++ b/src/jtag/drivers/jtag_usb_common.c
@@ -37,13 +37,13 @@ const char *jtag_usb_get_location(void)
 bool jtag_usb_location_equal(uint8_t dev_bus, uint8_t *port_path,
                             size_t path_len)
 {
-       size_t path_step, string_lengh;
+       size_t path_step, string_lenght;
        char *ptr, *loc;
        bool equal = false;
 
        /* strtok need non const char */
        loc = strndup(jtag_usb_get_location(), JTAG_USB_MAX_LOCATION_LENGHT);
-       string_lengh = strnlen(loc, JTAG_USB_MAX_LOCATION_LENGHT);
+       string_lenght = strnlen(loc, JTAG_USB_MAX_LOCATION_LENGHT);
 
        ptr = strtok(loc, "-");
        if (ptr == NULL) {
@@ -51,7 +51,7 @@ bool jtag_usb_location_equal(uint8_t dev_bus, uint8_t 
*port_path,
                goto done;
        }
 
-       string_lengh -= 1;
+       string_lenght -= 1;
        /* check bus mismatch */
        if (atoi(ptr) != dev_bus)
                goto done;
@@ -69,11 +69,11 @@ bool jtag_usb_location_equal(uint8_t dev_bus, uint8_t 
*port_path,
                        break;
 
                path_step++;
-               string_lengh -= 2;
+               string_lenght -= 2;
        };
 
        /* walked the full path, all elements match */
-       if (path_step == path_len && !string_lengh)
+       if (path_step == path_len && !string_lenght)
                equal = true;
        else
                LOG_WARNING("excluded by device path option: %s\n",

-- 


_______________________________________________
OpenOCD-devel mailing list
OpenOCD-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to