diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-17 13:48:51 +0200 |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-17 13:49:14 +0200 |
commit | 3d50220423b96a84f1ca4c0f5ef9246345aad359 (patch) | |
tree | 82d66d5da9ae7820abd04577fe6a93a983a5277b /src/gui/image/qppmhandler.cpp | |
parent | 025a7395153c3708e2964cfd93957532b19ae04f (diff) | |
download | qt4-tools-3d50220423b96a84f1ca4c0f5ef9246345aad359.tar.gz |
Fix coverity warnings
Diffstat (limited to 'src/gui/image/qppmhandler.cpp')
-rw-r--r-- | src/gui/image/qppmhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/image/qppmhandler.cpp b/src/gui/image/qppmhandler.cpp index 77ccb4807e..ed8f4c13a9 100644 --- a/src/gui/image/qppmhandler.cpp +++ b/src/gui/image/qppmhandler.cpp @@ -80,7 +80,7 @@ static int read_pbm_int(QIODevice *d) else if (isspace((uchar) c)) continue; else if (c == '#') - d->readLine(buf, buflen); + (void)d->readLine(buf, buflen); else break; } |