[Lldb-commits] [lldb] r149297 - /lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp

Johnny Chen johnny.chen at apple.com
Mon Jan 30 15:26:57 PST 2012


Author: johnny
Date: Mon Jan 30 17:26:57 2012
New Revision: 149297

URL: http://llvm.org/viewvc/llvm-project?rev=149297&view=rev
Log:
Trivial indentation change.

Modified:
    lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp

Modified: lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp?rev=149297&r1=149296&r2=149297&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp Mon Jan 30 17:26:57 2012
@@ -951,7 +951,8 @@
         return false;
     }
     // If thre's no argument, it is an error.
-    if (command.GetArgumentCount() <= 0) {
+    if (command.GetArgumentCount() <= 0)
+    {
         result.GetErrorStream().Printf("error: specify your target variable (no '-x') or expression (with '-x') to watch for\n");
         result.SetStatus(eReturnStatusFailed);
         return false;





More information about the lldb-commits mailing list