fixed gaffe in last release w/target number.
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Mon, 25 Aug 2008 11:30:46 +0000 (11:30 +0000)
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Mon, 25 Aug 2008 11:30:46 +0000 (11:30 +0000)
git-svn-id: svn://svn.berlios.de/openocd/trunk@965 b42882b7-edfa-0310-969c-e2dbd0fdcd60

src/target/target.c

index aaad831700b7ef9101a6ec7e4ae2728ffacc5672..f79156ad645d0cdafd3d1afafe19913e0e0a6147 100644 (file)
@@ -1394,12 +1394,12 @@ int handle_target_command(struct command_context_s *cmd_ctx, char *cmd, char **a
                                }
 
                                // get target number *before* adding new target to the list */
-                               i = new_target_number();
+                               int n = new_target_number();
                                // calloc will init the memory to zero for us
                                *last_target_p = calloc(1,sizeof(target_t));
                                // save target number.
                                (*last_target_p)->cmd_name = NULL;
-                               (*last_target_p)->target_number = i;
+                               (*last_target_p)->target_number = n;
 
                                /* allocate memory for each unique target type */
                                (*last_target_p)->type = (target_type_t*)malloc(sizeof(target_type_t));