From 68ebae61d1e51c2741c14bc9f1995270c84f51a6 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Thu, 28 Apr 2011 20:55:26 +0000 Subject: Added the ability to specify dumping options (show types, show location, depth control, pointer depth, and more) when dumping memory and viewing as a type. llvm-svn: 130436 --- lldb/source/Commands/CommandObjectFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectFrame.cpp') diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index ade3ead6..6521416 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -334,7 +334,7 @@ public: case 'L': show_location= true; break; case 'c': show_decl = true; break; case 'D': debug = true; break; - case 'f': error = Args::StringToFormat(option_arg, format); break; + case 'f': error = Args::StringToFormat(option_arg, format, NULL); break; case 'F': flat_output = true; break; case 'A': max_depth = Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success); -- cgit v1.1