Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d03a491

Browse files
committed
Commit 59dca1e2363d for issue #13327 introduced a compilation warning
1 parent 6e533f0 commit d03a491

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Modules/posixmodule.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10943,7 +10943,8 @@ static PyMethodDef posix_methods[] = {
1094310943
{"unlinkat", posix_unlinkat, METH_VARARGS, posix_unlinkat__doc__},
1094410944
#endif
1094510945
#ifdef HAVE_UTIMENSAT
10946-
{"utimensat", posix_utimensat, METH_VARARGS | METH_KEYWORDS,
10946+
{"utimensat", (PyCFunction)posix_utimensat,
10947+
METH_VARARGS | METH_KEYWORDS,
1094710948
posix_utimensat__doc__},
1094810949
#endif
1094910950
#ifdef HAVE_MKFIFOAT

0 commit comments

Comments
 (0)