Commit b9b563fa authored by Christian Heimes's avatar Christian Heimes

Use C-style comments for C89 / ANSI C compatibility

parent f790ddb1
...@@ -10488,7 +10488,7 @@ posix_listxattr(PyObject *self, PyObject *args, PyObject *kwargs) ...@@ -10488,7 +10488,7 @@ posix_listxattr(PyObject *self, PyObject *args, PyObject *kwargs)
static Py_ssize_t buffer_sizes[] = { 256, XATTR_LIST_MAX, 0 }; static Py_ssize_t buffer_sizes[] = { 256, XATTR_LIST_MAX, 0 };
Py_ssize_t buffer_size = buffer_sizes[i]; Py_ssize_t buffer_size = buffer_sizes[i];
if (!buffer_size) { if (!buffer_size) {
// ERANGE /* ERANGE */
path_error("listxattr", &path); path_error("listxattr", &path);
break; break;
} }
......
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