Clean trailing whitespaces in Makefile.pre.in and grpmodule.c.
diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c
index 07de880..ebc38cc 100644
--- a/Modules/grpmodule.c
+++ b/Modules/grpmodule.c
@@ -10,8 +10,8 @@
static PyStructSequence_Field struct_group_type_fields[] = {
{"gr_name", "group name"},
{"gr_passwd", "password"},
- {"gr_gid", "group id"},
- {"gr_mem", "group memebers"},
+ {"gr_gid", "group id"},
+ {"gr_mem", "group memebers"},
{0}
};
@@ -113,7 +113,7 @@
if (!py_str_name)
return NULL;
name = PyString_AS_STRING(py_str_name);
-
+
if ((p = getgrnam(name)) == NULL) {
PyErr_Format(PyExc_KeyError, "getgrnam(): name not found: %s", name);
Py_DECREF(py_str_name);