mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Small bug fix in tstring.cpp
This commit is contained in:
parent
a9cdbb7e75
commit
6e35e56d7f
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user