Enabled extra warnings and fixed a bunch of small issues.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@124250 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectFrame.cpp b/source/Commands/CommandObjectFrame.cpp
index 3d9d819..0d955b3 100644
--- a/source/Commands/CommandObjectFrame.cpp
+++ b/source/Commands/CommandObjectFrame.cpp
@@ -629,7 +629,7 @@
                     {
                         for (uint32_t i=0; i<num_variables; i++)
                         {
-                            VariableSP var_sp (variable_list->GetVariableAtIndex(i));
+                            var_sp = variable_list->GetVariableAtIndex(i);
                             bool dump_variable = true;
                             
                             switch (var_sp->GetScope())