mirror of
https://github.com/taglib/taglib.git
synced 2025-07-25 00:14:31 -04:00
Fixed a wrong integer type
This commit is contained in:
@ -86,8 +86,8 @@ namespace
|
||||
|
||||
#endif
|
||||
|
||||
const int pos = s.rfind(".");
|
||||
if(pos != -1)
|
||||
const size_t pos = s.rfind(".");
|
||||
if(pos != String::npos)
|
||||
ext = s.substr(pos + 1).upper();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user