From: Michal MalĂ˝ Date: Sun, 29 Mar 2015 16:27:49 +0000 (+0200) Subject: Silence VC12 compiler warning X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=f413dc5b9a1fa684b9afb45bd00892c33dbd60d8;p=libHPCS.git Silence VC12 compiler warning --- diff --git a/libhpcs.c b/libhpcs.c index e13679f..ea77bbf 100644 --- a/libhpcs.c +++ b/libhpcs.c @@ -791,7 +791,7 @@ static enum HPCS_ParseCode read_string_at_offset(FILE* datafile, const HPCS_offs #ifdef _WIN32 /* String is stored as native Windows WCHAR */ - ret = __win32_wchar_to_utf8(result, string); + ret = __win32_wchar_to_utf8(result, (WCHAR*)string); #else /* Explicitly convert from UTF-16LE (internal WCHAR representation) */ ret = __unix_wchar_to_utf8(result, string, str_length * SEGMENT_SIZE);