Skip to content

Commit c2f41bf

Browse files
committed
3.1.0
Fix a small typo caused by api update.
1 parent 0bb72b6 commit c2f41bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MpegCoder/MpegPyd.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ PyObject *str2PyStr(string Str) { // Convert the output string to the widechar
2121
wchar_t* wszString = new wchar_t[static_cast<size_t>(wlen) + 1];
2222
MultiByteToWideChar(CP_ACP, NULL, Str.c_str(), int(Str.size()), wszString, wlen);
2323
wszString[wlen] = 0;
24-
PyObject* res = PyUnicode_FromWideChar((const Py_UNICODE*)wszString, wlen);
24+
PyObject* res = PyUnicode_FromWideChar(wszString, wlen);
2525
delete[] wszString;
2626
return res;
2727
}

0 commit comments

Comments
 (0)