commit | d497df5cf5d977522814acef72b8b65f1774408e | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Aug 17 01:46:05 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Aug 17 01:46:05 2008 +0000 |
tree | 179634f591e6506c5862dca9035276f8a3a70ad6 | |
parent | 66a6b8be97a5d014a0cb710ed8e36c1fe9f735f5 [diff] |
rename OutputData to 'write' to match ostream. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54857 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp index ec7ac6d..e47bccd 100644 --- a/lib/Support/raw_ostream.cpp +++ b/lib/Support/raw_ostream.cpp
@@ -51,7 +51,7 @@ void raw_fd_ostream::flush_impl() { if (OutBufCur-OutBufStart) - write(FD, OutBufStart, OutBufCur-OutBufStart); + ::write(FD, OutBufStart, OutBufCur-OutBufStart); HandleFlush(); }