diff options
author | Erik Troan <ewt@redhat.com> | 2002-01-09 20:33:19 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2002-01-09 20:33:19 +0000 |
commit | 6960500ed137fa587ed4c21bfb3632914236e69f (patch) | |
tree | 97bc319d4a0cd07f4b4d98ddada96ccecb4d0433 | |
parent | a490490406be3c362aa1bc9f76078f4edace8258 (diff) | |
download | anaconda-6960500ed137fa587ed4c21bfb3632914236e69f.tar.gz anaconda-6960500ed137fa587ed4c21bfb3632914236e69f.tar.xz anaconda-6960500ed137fa587ed4c21bfb3632914236e69f.zip |
use the right data type\!
-rw-r--r-- | isys/otherinsmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/otherinsmod.c b/isys/otherinsmod.c index 56b4b98a3..95c073b72 100644 --- a/isys/otherinsmod.c +++ b/isys/otherinsmod.c @@ -16,7 +16,7 @@ int ourInsmodCommand(int argc, char ** argv) { char * file; char finalName[100]; char * chptr; - int fd; + gzFile fd; int rc, rmObj = 0; int sparc64 = 0, i; char * ballPath = NULL; |