Commit 8fffb02d authored by Kenton Varda's avatar Kenton Varda

... How did this ever work?

parent 6b6fe39c
...@@ -690,7 +690,7 @@ public: ...@@ -690,7 +690,7 @@ public:
StringPtr textPtr = text; StringPtr textPtr = text;
while (text != nullptr) { while (textPtr != nullptr) {
miniposix::ssize_t n = miniposix::write(STDERR_FILENO, textPtr.begin(), textPtr.size()); miniposix::ssize_t n = miniposix::write(STDERR_FILENO, textPtr.begin(), textPtr.size());
if (n <= 0) { if (n <= 0) {
// stderr is broken. Give up. // stderr is broken. Give up.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment