From: Neal Norwitz Date: Sun, 5 Feb 2006 03:36:57 +0000 (+0000) Subject: Whitespace normalization X-Git-Tag: v2.5a0~717 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1cfc8ade1f661f02286f2b81123d4d436c6d9d0;p=python Whitespace normalization --- diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 1cd7d1709c..b01f42f034 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -877,10 +877,10 @@ new_mmap_object(PyObject *self, PyObject *args, PyObject *kwdict) return NULL; if ((access != (int)ACCESS_DEFAULT) && - ((flags != MAP_SHARED) || ( prot != (PROT_WRITE | PROT_READ)))) + ((flags != MAP_SHARED) || (prot != (PROT_WRITE | PROT_READ)))) return PyErr_Format(PyExc_ValueError, "mmap can't specify both access and flags, prot."); - switch((access_mode)access) { + switch ((access_mode)access) { case ACCESS_READ: flags = MAP_SHARED; prot = PROT_READ;