From: Christian Heimes Date: Sun, 23 Sep 2012 14:11:15 +0000 (+0200) Subject: Use C-style comments for C89 / ANSI C compatibility X-Git-Tag: v3.3.0rc3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8cd700155960ef720d4a8845fccf9d9f55ce105;p=python Use C-style comments for C89 / ANSI C compatibility --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 54f6cd2b22..55aeb61735 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -10488,7 +10488,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; }