From ad444d352170f6feed90398caac661c2355aad08 Mon Sep 17 00:00:00 2001 From: Frank Ueberschar Date: Mon, 28 Sep 2020 15:42:49 +0200 Subject: [PATCH] plugin: use signed conversion for uint64_t --- core/src/plugins/filed/python/module/bareosfd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/plugins/filed/python/module/bareosfd.cc b/core/src/plugins/filed/python/module/bareosfd.cc index f2a05ed284d..f955adb38f6 100644 --- a/core/src/plugins/filed/python/module/bareosfd.cc +++ b/core/src/plugins/filed/python/module/bareosfd.cc @@ -2014,7 +2014,7 @@ static int PyStatPacket_init(PyStatPacket* self, PyObject* args, PyObject* kwds) self->blocks = 1; if (!PyArg_ParseTupleAndKeywords( - args, kwds, "|IKHHIIIKIIIIK", kwlist, &self->dev, &self->ino, + args, kwds, "|IKHHIIILIIIIK", kwlist, &self->dev, &self->ino, &self->mode, &self->nlink, &self->uid, &self->gid, &self->rdev, &self->size, &self->atime, &self->mtime, &self->ctime, &self->blksize, &self->blocks)) {