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.1rc1~818^2^2~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b9493b53cadbe49055d8e7bef5da391c090e652;p=python Use C-style comments for C89 / ANSI C compatibility --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index e0efebfe1b..bd94ffb5fe 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -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; }