1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

LibC: Remove debug spam from openpty()

This commit is contained in:
Andreas Kling 2021-10-26 08:47:06 +02:00
parent fac6d220c3
commit 821c80848f

View file

@ -73,9 +73,6 @@ int openpty(int* amaster, int* aslave, char* name, const struct termios* termp,
return -1;
}
}
dbgln("openpty, master={}, slave={}, tty_name={}", *amaster, *aslave, tty_name);
return 0;
}