From d1cfc8ade1f661f02286f2b81123d4d436c6d9d0 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 5 Feb 2006 03:36:57 +0000 Subject: [PATCH] Whitespace normalization --- Modules/mmapmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1