From 6e35e56d7f39906d9ffaf84e001659d03fe71440 Mon Sep 17 00:00:00 2001 From: Tsuda Kageyu Date: Fri, 26 Apr 2013 17:32:39 +0900 Subject: [PATCH] Small bug fix in tstring.cpp --- taglib/toolkit/tstring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taglib/toolkit/tstring.cpp b/taglib/toolkit/tstring.cpp index 72f4a24a..eeba15af 100644 --- a/taglib/toolkit/tstring.cpp +++ b/taglib/toolkit/tstring.cpp @@ -709,7 +709,7 @@ String &String::operator=(wchar_t c) if(d->deref()) delete d; - d = new StringPrivate(1, static_cast(c)); + d = new StringPrivate(1, c); return *this; }