Fixed a silly bug that was causing the "this" pointer
to be passed improperly to expressions in certain
cases.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116884 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangUserExpression.cpp b/source/Expression/ClangUserExpression.cpp
index 7a28f97..0e454a7 100644
--- a/source/Expression/ClangUserExpression.cpp
+++ b/source/Expression/ClangUserExpression.cpp
@@ -216,9 +216,9 @@
 
 bool
 ClangUserExpression::PrepareToExecuteJITExpression (Stream &error_stream,
-                                       ExecutionContext &exe_ctx,
-                                       lldb::addr_t &struct_address,
-                                       lldb::addr_t object_ptr)
+                                                    ExecutionContext &exe_ctx,
+                                                    lldb::addr_t &struct_address,
+                                                    lldb::addr_t &object_ptr)
 {
     Log *log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS);