Kill a gcc warning introduced by r83988
diff --git a/Modules/getpath.c b/Modules/getpath.c
index faf8b56..2c55e18 100644
--- a/Modules/getpath.c
+++ b/Modules/getpath.c
@@ -416,7 +416,8 @@
fclose(f);
decoded = PyUnicode_DecodeUTF8(buf, n, "surrogateescape");
if (decoded != NULL) {
- n = PyUnicode_AsWideChar(decoded, rel_builddir_path, MAXPATHLEN);
+ n = PyUnicode_AsWideChar((PyUnicodeObject*)decoded,
+ rel_builddir_path, MAXPATHLEN);
Py_DECREF(decoded);
if (n >= 0) {
rel_builddir_path[n] = L'\0';