[Lldb-commits] [lldb] r156952 - /lldb/trunk/tools/driver/Driver.cpp
Johnny Chen
johnny.chen at apple.com
Wed May 16 15:01:10 PDT 2012
Author: johnny
Date: Wed May 16 17:01:10 2012
New Revision: 156952
URL: http://llvm.org/viewvc/llvm-project?rev=156952&view=rev
Log:
Fix a typo.
Modified:
lldb/trunk/tools/driver/Driver.cpp
Modified: lldb/trunk/tools/driver/Driver.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/driver/Driver.cpp?rev=156952&r1=156951&r2=156952&view=diff
==============================================================================
--- lldb/trunk/tools/driver/Driver.cpp (original)
+++ lldb/trunk/tools/driver/Driver.cpp Wed May 16 17:01:10 2012
@@ -135,7 +135,7 @@
void
Driver::CloseIOChannelFile ()
{
- // Write and End of File sequence to the file descriptor to ensure any
+ // Write an End of File sequence to the file descriptor to ensure any
// read functions can exit.
char eof_str[] = "\x04";
::write (m_editline_pty.GetMasterFileDescriptor(), eof_str, strlen(eof_str));
More information about the lldb-commits
mailing list