aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-08-06 21:10:10 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-08-06 21:10:10 +0000
commit54da3845fc55af31848867a94017e892e0077b72 (patch)
treee1067932e33879eba70bcf289cac6181680989c9 /lib
parentc6773842f9ddb7ed4f69b89957351481a1b2bb2d (diff)
downloadenigma2-54da3845fc55af31848867a94017e892e0077b72.tar.gz
enigma2-54da3845fc55af31848867a94017e892e0077b72.zip
int -> size_t
Diffstat (limited to 'lib')
-rw-r--r--lib/service/servicemp3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/service/servicemp3.cpp b/lib/service/servicemp3.cpp
index bd92cf20..a38ad415 100644
--- a/lib/service/servicemp3.cpp
+++ b/lib/service/servicemp3.cpp
@@ -496,7 +496,7 @@ RESULT eServiceMP3::info(ePtr<iServiceInformation>&i)
RESULT eServiceMP3::getName(std::string &name)
{
name = m_filename;
- int n = name.rfind('/');
+ size_t n = name.rfind('/');
if (n != std::string::npos)
name = name.substr(n + 1);
return 0;