[Lldb-commits] [lldb] r154529 - /lldb/branches/lldb-platform-work/include/lldb/Target/Platform.h

Johnny Chen johnny.chen at apple.com
Wed Apr 11 13:49:55 PDT 2012


Author: johnny
Date: Wed Apr 11 15:49:55 2012
New Revision: 154529

URL: http://llvm.org/viewvc/llvm-project?rev=154529&view=rev
Log:
Fix typo.

Modified:
    lldb/branches/lldb-platform-work/include/lldb/Target/Platform.h

Modified: lldb/branches/lldb-platform-work/include/lldb/Target/Platform.h
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/lldb-platform-work/include/lldb/Target/Platform.h?rev=154529&r1=154528&r2=154529&view=diff
==============================================================================
--- lldb/branches/lldb-platform-work/include/lldb/Target/Platform.h (original)
+++ lldb/branches/lldb-platform-work/include/lldb/Target/Platform.h Wed Apr 11 15:49:55 2012
@@ -514,9 +514,9 @@
         }
         
         virtual void
-        SetSupportsRSync(bool rsync)
+        SetSupportsRSync(bool flag)
         {
-            m_supports_rsync = rsync;
+            m_supports_rsync = flag;
         }
         
         virtual const char*
@@ -538,9 +538,9 @@
         }
         
         virtual void
-        SetSupportsSSH(bool rsync)
+        SetSupportsSSH(bool flag)
         {
-            m_supports_ssh = rsync;
+            m_supports_ssh = flag;
         }
         
         virtual const char*





More information about the lldb-commits mailing list