Update src/inode2prog.cpp

Co-authored-by: Arnout Engelen <arnout@engelen.eu>
This commit is contained in:
takeoverjp
2021-02-17 22:31:21 +09:00
committed by GitHub
parent 0a54596bc6
commit 12dbf5e28a

View File

@@ -235,7 +235,7 @@ static quad_t get_ms() {
static void get_pids(std::set<pid_t> *pids) {
DIR *proc = opendir("/proc");
if (proc == 0) {
std::cerr << "Error reading /proc, needed to get inode-to-pid-maping\n";
std::cerr << "Error reading /proc, needed to get inode-to-pid-mapping" << std::endl;
exit(1);
}
dirent *entry;