Fixed an issue with:

(lldb) frame variable --location

Where the address of variables wasn't being formatted consistently.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@114266 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectFrame.cpp b/source/Commands/CommandObjectFrame.cpp
index fdd47bc..547acd6 100644
--- a/source/Commands/CommandObjectFrame.cpp
+++ b/source/Commands/CommandObjectFrame.cpp
@@ -330,7 +330,7 @@
             //const char *loc_cstr = valobj->GetLocationAsCString();
             if (m_options.show_location)
             {
-                s.Printf("@ %s: ", valobj->GetLocationAsCString(exe_scope));
+                s.Printf("%s: ", valobj->GetLocationAsCString(exe_scope));
             }
             if (m_options.debug)
                 s.Printf ("%p ValueObject{%u} ", valobj, valobj->GetID());