Commit 076b209c authored by Martin v. Löwis's avatar Martin v. Löwis

Add missing return statement.

parent d3e02653
......@@ -1424,6 +1424,7 @@ extract_time(PyObject *t, long* sec, long* usec)
return -1;
*sec = intval;
*usec = 0;
return 0;
}
PyDoc_STRVAR(posix_utime__doc__,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment