mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Commit 59dca1e2363d for issue #13327 introduced a compilation warning
This commit is contained in:
parent
6e533f040b
commit
d03a49150f
1 changed files with 2 additions and 1 deletions
|
@ -10943,7 +10943,8 @@ static PyMethodDef posix_methods[] = {
|
|||
{"unlinkat", posix_unlinkat, METH_VARARGS, posix_unlinkat__doc__},
|
||||
#endif
|
||||
#ifdef HAVE_UTIMENSAT
|
||||
{"utimensat", posix_utimensat, METH_VARARGS | METH_KEYWORDS,
|
||||
{"utimensat", (PyCFunction)posix_utimensat,
|
||||
METH_VARARGS | METH_KEYWORDS,
|
||||
posix_utimensat__doc__},
|
||||
#endif
|
||||
#ifdef HAVE_MKFIFOAT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue