summaryrefslogtreecommitdiff
path: root/Terminal/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Terminal/main.cpp')
-rw-r--r--Terminal/main.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Terminal/main.cpp b/Terminal/main.cpp
index 44b7b17d2a..36cea4a693 100644
--- a/Terminal/main.cpp
+++ b/Terminal/main.cpp
@@ -26,7 +26,6 @@ static void make_shell(int ptm_fd)
int rc = 0;
close(ptm_fd);
int pts_fd = open(tty_name, O_RDWR);
- dbgprintf("*** In child (%d), opening slave pty %s, pts_fd=%d\n", getpid(), tty_name, pts_fd);
rc = ioctl(0, TIOCNOTTY);
if (rc < 0) {
perror("ioctl(TIOCNOTTY)");
@@ -50,8 +49,6 @@ static void make_shell(int ptm_fd)
exit(1);
}
ASSERT_NOT_REACHED();
- } else {
- dbgprintf("*** In parent, child is %d\n", pid);
}
}