Untabify Modules/posixmodule.c (2)
Fix some more functions by hand
This commit is contained in:
parent
d6f8542307
commit
862490a546
|
@ -612,10 +612,10 @@ os2_formatmsg(char *msgbuf, int msglen, char *reason)
|
||||||
msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
|
msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
|
||||||
|
|
||||||
if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */
|
if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */
|
||||||
char *lastc = &msgbuf[ strlen(msgbuf)-1 ];
|
char *lastc = &msgbuf[ strlen(msgbuf)-1 ];
|
||||||
|
|
||||||
while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc)))
|
while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc)))
|
||||||
*lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
|
*lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Add Optional Reason Text */
|
/* Add Optional Reason Text */
|
||||||
|
@ -8181,14 +8181,14 @@ posix_sysconf(PyObject *self, PyObject *args)
|
||||||
int name;
|
int name;
|
||||||
|
|
||||||
if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
|
if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
|
||||||
int value;
|
int value;
|
||||||
|
|
||||||
errno = 0;
|
errno = 0;
|
||||||
value = sysconf(name);
|
value = sysconf(name);
|
||||||
if (value == -1 && errno != 0)
|
if (value == -1 && errno != 0)
|
||||||
posix_error();
|
posix_error();
|
||||||
else
|
else
|
||||||
result = PyInt_FromLong(value);
|
result = PyInt_FromLong(value);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue