summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qprocess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io/qprocess.cpp')
-rw-r--r--src/corelib/io/qprocess.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/io/qprocess.cpp b/src/corelib/io/qprocess.cpp
index 374142702b..854752069e 100644
--- a/src/corelib/io/qprocess.cpp
+++ b/src/corelib/io/qprocess.cpp
@@ -1018,8 +1018,8 @@ bool QProcessPrivate::tryReadFromChannel(Channel *channel)
return false;
}
#if defined QPROCESS_DEBUG
- qDebug("QProcessPrivate::tryReadFromChannel(%d), read %d bytes from the process' output",
- int(channel - &stdinChannel), int(readBytes));
+ qDebug("QProcessPrivate::tryReadFromChannel(%d), read %lld bytes from the process' output",
+ int(channel - &stdinChannel), readBytes);
#endif
if (channel->closed) {