summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-14 22:13:48 +0000
committerMatt Wilson <msw@redhat.com>2000-02-14 22:13:48 +0000
commit900db43e78c3437a2261d9e88f75448daaca8a80 (patch)
tree51462d94284ae806254ffca13fa603fa44677b6e /isys
parentd19d553d3891631983ba05cd24174eaddcecceb4 (diff)
downloadanaconda-900db43e78c3437a2261d9e88f75448daaca8a80.tar.gz
anaconda-900db43e78c3437a2261d9e88f75448daaca8a80.tar.xz
anaconda-900db43e78c3437a2261d9e88f75448daaca8a80.zip
added a missing unsigned
Diffstat (limited to 'isys')
-rw-r--r--isys/isys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.c b/isys/isys.c
index f08f5a03e..389ebc90c 100644
--- a/isys/isys.c
+++ b/isys/isys.c
@@ -940,7 +940,7 @@ static PyObject * doFbconProbe (PyObject * s, PyObject * args) {
static PyObject * doGetRaidSuperblock(PyObject * s, PyObject * args) {
int fd;
- int size;
+ unsigned long size;
struct md_superblock_s sb;
if (!PyArg_ParseTuple(args, "i", &fd)) return NULL;