mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Fixed a wrong integer type
This commit is contained in:
parent
09b574a19a
commit
90d43956ec
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user