close disambiguation

The implicit close(masterfd) here actually calls dlangide.ui.terminal.TerminalDevice.close, which is not callable using argument types (int) and somehow leads to a compile failure.
This commit is contained in:
Sheldon Shen 2016-06-04 21:24:19 +08:00
parent 444db7e37d
commit 72c9be2d5b
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;
}
}