From 7bd5487ffd32eab4cbd6acb01d127e00dc6bc875 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 26 Apr 2017 11:54:49 +0200 Subject: [PATCH] timemodule.c: Cast PyUnicode_AsUTF8() to char* bpo-28769 changed PyUnicode_AsUTF8() return type from const char* to char* in Python 3.7, but tm_zone field type of the tm structure is char* on FreeBSD. Cast PyUnicode_AsUTF8() to char* in gettmarg() to fix the warning: Modules/timemodule.c:443:20: warning: assigning to 'char *' from 'const char *' discards qualifiers --- Modules/timemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 32062a3a6a7f7b..15c467b9b4074e 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -440,7 +440,7 @@ gettmarg(PyObject *args, struct tm *p) if (Py_TYPE(args) == &StructTimeType) { PyObject *item; item = PyTuple_GET_ITEM(args, 9); - p->tm_zone = item == Py_None ? NULL : PyUnicode_AsUTF8(item); + p->tm_zone = item == Py_None ? NULL : (char*)PyUnicode_AsUTF8(item); item = PyTuple_GET_ITEM(args, 10); p->tm_gmtoff = item == Py_None ? 0 : PyLong_AsLong(item); if (PyErr_Occurred())