| Index: tools/android/forwarder2/pipe_notifier.cc
|
| diff --git a/tools/android/forwarder2/pipe_notifier.cc b/tools/android/forwarder2/pipe_notifier.cc
|
| index 3aba18b0d02be81d8215bca892f84d61f42715e9..9110fffcea1812dd1df8a648a1556fb408af4478 100644
|
| --- a/tools/android/forwarder2/pipe_notifier.cc
|
| +++ b/tools/android/forwarder2/pipe_notifier.cc
|
| @@ -25,8 +25,8 @@ PipeNotifier::PipeNotifier() {
|
| }
|
|
|
| PipeNotifier::~PipeNotifier() {
|
| - (void) HANDLE_EINTR(close(receiver_fd_));
|
| - (void) HANDLE_EINTR(close(sender_fd_));
|
| + close(receiver_fd_);
|
| + close(sender_fd_);
|
| }
|
|
|
| bool PipeNotifier::Notify() {
|
|
|