SlavePTY: Use dbg() instead of dbgprintf()

This commit is contained in:
Liav A 2020-02-25 01:10:07 +02:00 committed by Andreas Kling
commit 1f13f51ebd
Notes: sideshowbarker 2024-07-19 09:00:09 +09:00

View file

@ -48,7 +48,7 @@ SlavePTY::SlavePTY(MasterPTY& master, unsigned index)
SlavePTY::~SlavePTY() SlavePTY::~SlavePTY()
{ {
#ifdef SLAVEPTY_DEBUG #ifdef SLAVEPTY_DEBUG
dbgprintf("~SlavePTY(%u)\n", m_index); dbg() << "~SlavePTY(" << m_index << ")";
#endif #endif
DevPtsFS::unregister_slave_pty(*this); DevPtsFS::unregister_slave_pty(*this);
} }