summaryrefslogtreecommitdiff
path: root/lib/tty.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tty.js')
-rw-r--r--lib/tty.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tty.js b/lib/tty.js
index 584ff9d870..79e61e981b 100644
--- a/lib/tty.js
+++ b/lib/tty.js
@@ -21,7 +21,7 @@
'use strict';
-const { inherits, _errnoException, _extend } = require('util');
+const { inherits, _extend } = require('util');
const net = require('net');
const { TTY, isTTY } = process.binding('tty_wrap');
const errors = require('internal/errors');
@@ -178,7 +178,7 @@ WriteStream.prototype._refreshSize = function() {
const winSize = new Array(2);
const err = this._handle.getWindowSize(winSize);
if (err) {
- this.emit('error', _errnoException(err, 'getWindowSize'));
+ this.emit('error', errors.errnoException(err, 'getWindowSize'));
return;
}
const [newCols, newRows] = winSize;