Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix style issues
  • Loading branch information
shihai1991 committed Apr 2, 2020
commit 6fdb19aecf32b10d43aeb8778617afdabcbff8fc
5 changes: 2 additions & 3 deletions Modules/resource.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,8 @@ resource_methods[] = {
/* Module initialization */


static int resource_exec(PyObject *module)
static int
resource_exec(PyObject *module)
{
#define ADD_INT(module, value) \
do { \
Expand Down Expand Up @@ -471,14 +472,12 @@ static int resource_exec(PyObject *module)
#endif

PyObject *v;

if (sizeof(RLIM_INFINITY) > sizeof(long)) {
Comment thread
shihai1991 marked this conversation as resolved.
v = PyLong_FromLongLong((long long) RLIM_INFINITY);
} else
{
v = PyLong_FromLong((long) RLIM_INFINITY);
}

if (!v) {
return -1;
}
Comment thread
shihai1991 marked this conversation as resolved.
Expand Down