mp3unicode: revbump for libtag

This commit is contained in:
Mateusz Sylwestrzak 2025-02-25 23:59:04 +01:00 committed by classabbyamp
parent c5436bf3da
commit b3acd186b5
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,11 @@
--- a/mp3unicode.cpp 2012-05-07 14:03:19.000000000 +0200
+++ b/mp3unicode.cpp 2025-02-25 23:57:07.907736208 +0100
@@ -192,7 +192,7 @@
bool
heuristicIsUnicode (TagLib::String string) {
unsigned u0080 = 0;
- for(TagLib::uint i = 0; i < string.size(); i++) {
+ for(unsigned int i = 0; i < string.size(); i++) {
if(string[i] > 255) {
return true;
}

View file

@ -1,7 +1,7 @@
# Template file for 'mp3unicode'
pkgname=mp3unicode
version=1.2.1
revision=1
revision=2
build_style=gnu-configure
hostmakedepends="pkg-config"
makedepends="taglib-devel"