OSDN Git Service

(mi_cmd_var_set_format): Add value field to output.
authornickrob <nickrob>
Wed, 23 Jan 2008 06:13:44 +0000 (06:13 +0000)
committernickrob <nickrob>
Wed, 23 Jan 2008 06:13:44 +0000 (06:13 +0000)
gdb/mi/mi-cmd-var.c

index 2b5cd6d..96d01f5 100644 (file)
@@ -231,6 +231,9 @@ mi_cmd_var_set_format (char *command, char **argv, int argc)
 
   /* Report the new current format */
   ui_out_field_string (uiout, "format", varobj_format_string[(int) format]);
+  /* Report the value in the new format */
+  ui_out_field_string (uiout, "value", varobj_get_value (var));
   return MI_CMD_DONE;
 }