summaryrefslogtreecommitdiff
path: root/source/python/py_smb.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/python/py_smb.c')
-rw-r--r--source/python/py_smb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/python/py_smb.c b/source/python/py_smb.c
index ad83e469b24..c3d59d4fb8c 100644
--- a/source/python/py_smb.c
+++ b/source/python/py_smb.c
@@ -212,7 +212,7 @@ static PyObject *py_smb_read(PyObject *self, PyObject *args, PyObject *kw)
static char *kwlist[] = { "fnum", "offset", "size", NULL };
int fnum, offset=0, size=0;
ssize_t result;
- SMB_OFF_T fsize;
+ size_t fsize;
char *data;
PyObject *ret;