summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-handle-fileno.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/test-handle-fileno.c')
-rw-r--r--deps/uv/test/test-handle-fileno.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/uv/test/test-handle-fileno.c b/deps/uv/test/test-handle-fileno.c
index df5e984ab7..3fe933adeb 100644
--- a/deps/uv/test/test-handle-fileno.c
+++ b/deps/uv/test/test-handle-fileno.c
@@ -102,7 +102,8 @@ TEST_IMPL(handle_fileno) {
tty_fd = get_tty_fd();
if (tty_fd < 0) {
- LOGF("Cannot open a TTY fd");
+ fprintf(stderr, "Cannot open a TTY fd");
+ fflush(stderr);
} else {
r = uv_tty_init(loop, &tty, tty_fd, 0);
ASSERT(r == 0);