Use C-style comments for C89 / ANSI C compatibility

This commit is contained in:
Christian Heimes 2012-09-23 16:11:15 +02:00
parent 91ceeceea7
commit 3b9493b53c
1 changed files with 1 additions and 1 deletions

View File

@ -10495,7 +10495,7 @@ posix_listxattr(PyObject *self, PyObject *args, PyObject *kwargs)
static Py_ssize_t buffer_sizes[] = { 256, XATTR_LIST_MAX, 0 };
Py_ssize_t buffer_size = buffer_sizes[i];
if (!buffer_size) {
// ERANGE
/* ERANGE */
path_error("listxattr", &path);
break;
}