spellcheck
This commit is contained in:
@@ -44,13 +44,13 @@ void Terminal::onLoad() {
|
||||
}
|
||||
|
||||
int returnCode = grantpt(master);
|
||||
if (!returnCode) {
|
||||
if (returnCode != 0) {
|
||||
std::cerr << "Error " << errno << " on grantpt()\n";
|
||||
std::abort();
|
||||
}
|
||||
|
||||
returnCode = unlockpt(master);
|
||||
if (!returnCode) {
|
||||
if (returnCode != 0) {
|
||||
std::cerr << "Error " << errno << " on unlockpt()\n";
|
||||
std::abort();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user