diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-28 06:55:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-28 06:55:22 (GMT) |
commit | ccdc09ed1ebea7d7c6b41548132aa08bd797bfe8 (patch) | |
tree | 6c39c86a54ebb2c473fe4a27e5c07d29bb2bdf6f /PC/_msi.c | |
parent | f7eae0adfcd4c50034281b2c69f461b43b68db84 (diff) | |
download | cpython-ccdc09ed1ebea7d7c6b41548132aa08bd797bfe8.zip cpython-ccdc09ed1ebea7d7c6b41548132aa08bd797bfe8.tar.gz cpython-ccdc09ed1ebea7d7c6b41548132aa08bd797bfe8.tar.bz2 |
Fix compiler warnings on Windows introduced in bpo-13617. (#2464)
Diffstat (limited to 'PC/_msi.c')
-rw-r--r-- | PC/_msi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -594,7 +594,7 @@ summary_setproperty(msiobj* si, PyObject *args) return NULL; if (PyUnicode_Check(data)) { - WCHAR *value = _PyUnicode_AsUnicode(data); + const WCHAR *value = _PyUnicode_AsUnicode(data); if (value == NULL) { return NULL; } |