correct debug message in QProcessPrivate::terminateProcess()

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-09-08 00:51:24 +03:00
parent aa52843a7f
commit c6cb53c972

View file

@ -758,7 +758,7 @@ qint64 QProcessPrivate::writeToStdin(const char *data, qint64 maxlen)
void QProcessPrivate::terminateProcess() void QProcessPrivate::terminateProcess()
{ {
#if defined (QPROCESS_DEBUG) #if defined (QPROCESS_DEBUG)
qDebug("QProcessPrivate::killProcess()"); qDebug("QProcessPrivate::terminateProcess()");
#endif #endif
if (pid) if (pid)
::kill(pid, SIGTERM); ::kill(pid, SIGTERM);