From c2f593bdc1dd683fdd11800e40e9f71f5729c6ba Mon Sep 17 00:00:00 2001 From: ntfreak Date: Wed, 19 Aug 2009 08:39:06 +0000 Subject: [PATCH] Jonas Horberg [jhorberg@sauer-danfoss.com]: Fix small typo in ftd2xx type detection git-svn-id: svn://svn.berlios.de/openocd/trunk@2597 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/jtag/ft2232.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jtag/ft2232.c b/src/jtag/ft2232.c index 0806c90aa..1ae2f6627 100644 --- a/src/jtag/ft2232.c +++ b/src/jtag/ft2232.c @@ -1940,7 +1940,7 @@ static int ft2232_init_ftd2xx(uint16_t vid, uint16_t pid, int more, int* try_mor static const char* type_str[] = {"BM", "AM", "100AX", "UNKNOWN", "2232C", "232R", "2232H", "4232H"}; unsigned no_of_known_types = sizeof(type_str) / sizeof(type_str[0]) - 1; - unsigned type_index = ((unsigned)ftdi_device < no_of_known_types) + unsigned type_index = ((unsigned)ftdi_device <= no_of_known_types) ? ftdi_device : 3; LOG_INFO("device: %lu \"%s\"", ftdi_device, type_str[type_index]); LOG_INFO("deviceID: %lu", deviceID);