Skip to content

Commit

Permalink
forgot string
Browse files Browse the repository at this point in the history
  • Loading branch information
jstkdng committed May 18, 2024
1 parent 0fb60c8 commit c3fd1c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/terminal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ void Terminal::open_first_pty()
pty_fd = open(proc.pty_path.c_str(), O_RDONLY | O_NOCTTY);
if (pty_fd == -1) {
const auto err = std::error_code(errno, std::generic_category());
logger->debug("could not open pty {}, {}", proc.pty_path, err.message());
logger->debug("could not open pty {}, {}, ignoring", proc.pty_path, err.message());
continue;
}
terminal_pid = proc.pid;
Expand Down

0 comments on commit c3fd1c7

Please sign in to comment.