diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-05-26 14:35:22 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-05-26 14:35:22 +0000 |
commit | 1d02c374c8877d430f4ab35a790fc02f02974704 (patch) | |
tree | 8d03d2226cc9322262308eba5eb0754d58a71a98 /src/myriadstream.cpp | |
parent | b1522d279d22725a731cb8db93ec2d077028374c (diff) | |
download | libbu++-1d02c374c8877d430f4ab35a790fc02f02974704.tar.gz libbu++-1d02c374c8877d430f4ab35a790fc02f02974704.tar.bz2 libbu++-1d02c374c8877d430f4ab35a790fc02f02974704.tar.xz libbu++-1d02c374c8877d430f4ab35a790fc02f02974704.zip |
Fixed most of the compilation warnings, and a valgrind warning in the fstring's
remove function. memcpy can't do overlapping memory, changed it to use memmove.
Diffstat (limited to 'src/myriadstream.cpp')
-rw-r--r-- | src/myriadstream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/myriadstream.cpp b/src/myriadstream.cpp index b0b1d05..6623b2b 100644 --- a/src/myriadstream.cpp +++ b/src/myriadstream.cpp | |||
@@ -49,7 +49,7 @@ size_t Bu::MyriadStream::read( void *pBuf, size_t nBytes ) | |||
49 | sio << "MyriadStream: read: " << __LINE__ << ": Started, asked to read " << nBytes << "b." | 49 | sio << "MyriadStream: read: " << __LINE__ << ": Started, asked to read " << nBytes << "b." |
50 | << sio.nl; | 50 | << sio.nl; |
51 | #endif | 51 | #endif |
52 | if( nBytes > pStream->iSize-iPos ) | 52 | if( nBytes > (size_t)pStream->iSize-iPos ) |
53 | nBytes = pStream->iSize-iPos; | 53 | nBytes = pStream->iSize-iPos; |
54 | if( nBytes <= 0 ) | 54 | if( nBytes <= 0 ) |
55 | return 0; | 55 | return 0; |