diff options
Diffstat (limited to 'lib/service/servicemp3.cpp')
| -rw-r--r-- | lib/service/servicemp3.cpp | 2 |
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; |
