diff options
author | Pixel <Pixel> | 2001-10-29 17:12:20 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-10-29 17:12:20 +0000 |
commit | e5057005049b11af44cb804118f95370f03ab32c (patch) | |
tree | 3bba56312c3791f5046f37ee4411945d268760b7 /lib/ReadJob.cc | |
parent | a259ec553a1d685ebb976ec34eaaf700d24ee0c4 (diff) |
Going out, commiting...
Diffstat (limited to 'lib/ReadJob.cc')
-rw-r--r-- | lib/ReadJob.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ReadJob.cc b/lib/ReadJob.cc index 9f4e084..bd63377 100644 --- a/lib/ReadJob.cc +++ b/lib/ReadJob.cc @@ -9,8 +9,8 @@ int ReadJob::Do() { String buff; while (!s.IsClosed()) { - buff << s; - buff >> d; + s >> buff; + d << buff; if (buff == "") return TASK_DONE; } } |