diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2008-03-25 23:33:37 +0000 |
|---|---|---|
| committer | Andreas Oberritter <obi@opendreambox.org> | 2008-03-25 23:33:37 +0000 |
| commit | 1ba858ae812289da65cad37cbedcf2ae4bc0f6c3 (patch) | |
| tree | 9d363afa9be001d83c31e5c4da2969e0d01838fc /lib/base/estring.cpp | |
| parent | 5d6e862f8d4aa80b0907f520237ac28aa1247829 (diff) | |
| download | enigma2-1ba858ae812289da65cad37cbedcf2ae4bc0f6c3.tar.gz enigma2-1ba858ae812289da65cad37cbedcf2ae4bc0f6c3.zip | |
fix: large integer implicitly truncated to unsigned type,
comparison is always true due to limited range of data type
too many arguments for format
Diffstat (limited to 'lib/base/estring.cpp')
| -rw-r--r-- | lib/base/estring.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/base/estring.cpp b/lib/base/estring.cpp index 429c261f..ce36a002 100644 --- a/lib/base/estring.cpp +++ b/lib/base/estring.cpp @@ -10,10 +10,10 @@ std::string buildShortName( const std::string &str ) std::string tmp; static char stropen[3] = { 0xc2, 0x86, 0x00 }; static char strclose[3] = { 0xc2, 0x87, 0x00 }; - unsigned int open=std::string::npos-1; + size_t open=std::string::npos-1; while ( (open = str.find(stropen, open+2)) != std::string::npos ) { - unsigned int close = str.find(strclose, open); + size_t close = str.find(strclose, open); if ( close != std::string::npos ) tmp+=str.substr( open+2, close-(open+2) ); } @@ -362,7 +362,7 @@ std::string convertDVBUTF8(const unsigned char *data, int len, int table, int ts switch(n) { case 12: - eDebug("unsup. ISO8859-12 enc.", n); + eDebug("unsup. ISO8859-12 enc."); break; default: table=n; |
