Browse Source

SlavePTY: Use dbg() instead of dbgprintf()

Liav A 5 years ago
parent
commit
1f13f51ebd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Kernel/TTY/SlavePTY.cpp

+ 1 - 1
Kernel/TTY/SlavePTY.cpp

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