Merge pull request #1475 from atn34/fix-open-for-ide-linux-error

Fix unused-variable warning in linux-only code
This commit is contained in:
A.J. Beamon 2019-04-22 08:38:20 -07:00 committed by GitHub
commit aaa53b9c6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ private:
ACTOR static void poll( Reference<IEventFD> ev ) {
loop {
int64_t evfd_count = wait( ev->read() );
wait(success(ev->read()));
wait(delay(0, TaskDiskIOComplete));