From 54da3845fc55af31848867a94017e892e0077b72 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 6 Aug 2007 21:10:10 +0000 Subject: [PATCH] int -> size_t --- lib/service/servicemp3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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&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; -- 2.30.2