mirror of
https://github.com/taglib/taglib.git
synced 2025-07-19 05:24:25 -04:00
Small bug fix in tstring.cpp
This commit is contained in:
@ -709,7 +709,7 @@ String &String::operator=(wchar_t c)
|
||||
if(d->deref())
|
||||
delete d;
|
||||
|
||||
d = new StringPrivate(1, static_cast<uchar>(c));
|
||||
d = new StringPrivate(1, c);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user