Merge pull request #159 from meatatt/patch-1

close() disambiguation
This commit is contained in:
Vadim Lopatin 2016-06-06 07:31:02 +03:00
commit f7b6e45ef3
1 changed files with 2 additions and 2 deletions

View File

@ -795,8 +795,8 @@ class TerminalDevice : Thread {
}
} else {
if (masterfd && masterfd != -1) {
import core.sys.posix.unistd;
close(masterfd);
import core.sys.posix.unistd: close_=close;
close_(masterfd);
masterfd = 0;
}
}