Skip to content

Commit fb99129

Browse files
Update Modules/socketmodule.c
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 082e6b7 commit fb99129

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Modules/socketmodule.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5008,10 +5008,10 @@ _socket_socket_sendmsg_impl(PySocketSockObject *s, PyObject *data_arg,
50085008
item = PyTuple_GET_ITEM(cmsg_fast, ncmsgbufs);
50095009

50105010
if (!PyArg_Parse(item,
5011-
"(iiy*):[sendmsg() ancillary data items]",
5012-
&cmsgs[ncmsgbufs].level,
5013-
&cmsgs[ncmsgbufs].type,
5014-
&cmsgs[ncmsgbufs].data))
5011+
"(iiy*):[sendmsg() ancillary data items]",
5012+
&cmsgs[ncmsgbufs].level,
5013+
&cmsgs[ncmsgbufs].type,
5014+
&cmsgs[ncmsgbufs].data))
50155015
goto finally;
50165016
bufsize = cmsgs[ncmsgbufs++].data.len;
50175017

0 commit comments

Comments
 (0)