Skip to content

Commit

Permalink
plugin: use signed conversion for uint64_t
Browse files Browse the repository at this point in the history
  • Loading branch information
franku committed Sep 28, 2020
1 parent ac0e36a commit ad444d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/filed/python/module/bareosfd.cc
Expand Up @@ -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)) {
Expand Down

0 comments on commit ad444d3

Please sign in to comment.