mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +02:00
bug fixes.
This commit is contained in:
parent
8f1ca1e6e3
commit
6e1f807da1
3 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
/*
|
||||
* (c) Copyright QNX Software Systems Ltd. 2002.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
package org.eclipse.cdt.debug.mi.core.output;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
/*
|
||||
* (c) Copyright QNX Software Systems Ltd. 2002.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
*/
|
||||
package org.eclipse.cdt.debug.mi.core.output;
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ public class MIThreadSelectInfo extends MIInfo {
|
|||
MIResult[] results = rr.getMIResults();
|
||||
for (int i = 0; i < results.length; i++) {
|
||||
String var = results[i].getVariable();
|
||||
if (var.equals("new-thread-ids")) {
|
||||
if (var.equals("new-thread-id")) {
|
||||
MIValue value = results[i].getMIValue();
|
||||
if (value instanceof MIConst) {
|
||||
String str = ((MIConst)value).getCString();
|
||||
|
|
Loading…
Add table
Reference in a new issue