From b9e4cd3c6f6c775f8e416342afb7916dcab498a1 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Tue, 15 May 2012 00:20:35 +0200 Subject: [PATCH] Fix a (harmless) integer mismatch MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is not critical, but let's not over-optimise and request a byte when we store it anyway in an int… --- xattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xattr.c b/xattr.c index dc8ad00..77fb012 100644 --- a/xattr.c +++ b/xattr.c @@ -566,7 +566,7 @@ pysetxattr(PyObject *self, PyObject *args) target_t tgt; /* Parse the arguments */ - if (!PyArg_ParseTuple(args, "Oetet#|bi", &myarg, NULL, &attrname, + if (!PyArg_ParseTuple(args, "Oetet#|ii", &myarg, NULL, &attrname, NULL, &buf, &bufsize, &flags, &nofollow)) return NULL; if(convertObj(myarg, &tgt, nofollow) < 0) { -- 2.39.2