2
0
mirror of git://git.code.sf.net/p/openocd/code synced 2025-07-19 13:02:18 +10:00

David Brownell <david-b@pacbell.net> Bugfix: $target_name cget/configure -work-area-backup commands

should return the "is it backed up?" flag, not the work area size.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2108 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2009-06-08 06:18:13 +00:00
parent a405fd1581
commit e468797e41

View File

@ -3413,7 +3413,7 @@ static int target_configure( Jim_GetOptInfo *goi, target_t *target )
goto no_params;
}
}
Jim_SetResult( interp, Jim_NewIntObj( goi->interp, target->working_area_size ) );
Jim_SetResult(interp, Jim_NewIntObj(goi->interp, target->backup_working_area));
/* loop for more e*/
break;