diff options
Diffstat (limited to 'src/declarative/debugger')
-rw-r--r-- | src/declarative/debugger/qpacketprotocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/debugger/qpacketprotocol.cpp b/src/declarative/debugger/qpacketprotocol.cpp index b76c461..fb07c62 100644 --- a/src/declarative/debugger/qpacketprotocol.cpp +++ b/src/declarative/debugger/qpacketprotocol.cpp @@ -165,7 +165,7 @@ public Q_SLOTS: { if(-1 == inProgressSize) { // We need a size header of sizeof(qint32) - if(sizeof(qint32) > dev->bytesAvailable()) + if(sizeof(qint32) > (uint)dev->bytesAvailable()) return; // Read size header |