From d8a43b4a4bc00e47a0e57fa11bec4f05f0d86dec Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 26 Feb 2011 21:35:16 +0000 Subject: [PATCH] revert accidental formatting change --- Modules/posixmodule.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index aace2fed0bd..985a01e7333 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -5935,8 +5935,9 @@ posix_sendfile(PyObject *self, PyObject *args, PyObject *kwdict) int flags = 0; sf.headers = NULL; sf.trailers = NULL; - static char *keywords[] = {"out", "in", "offset", "count", "headers", - "trailers", "flags", NULL}; + static char *keywords[] = {"out", "in", + "offset", "count", + "headers", "trailers", "flags", NULL}; #ifdef __APPLE__ if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&O&|OOi:sendfile",