Rolled back unnecessary gzFile casts.

This commit is contained in:
Christian Federmann 2012-05-11 08:41:55 +02:00
parent b64c182535
commit 9b5a4278b7
2 changed files with 5 additions and 5 deletions

View File

@ -382,10 +382,10 @@ void Model::zipFile()
char inbuffer[128];
int num_read;
while ((num_read = fread(inbuffer, 1, sizeof(inbuffer), file)) > 0) {
gzwrite((gzFile)gzfile, inbuffer, num_read);
gzwrite(gzfile, inbuffer, num_read);
}
fclose(file);
gzclose((gzFile)gzfile);
gzclose(gzfile);
//Remove the unzipped file
remove(filename.c_str());

View File

@ -27,7 +27,7 @@ ParseNumberException::ParseNumberException(StringPiece value) throw() {
#ifdef HAVE_ZLIB
GZException::GZException(gzFile file) {
int num;
*this << gzerror((gzFile)file, &num) << " from zlib";
*this << gzerror(file, &num) << " from zlib";
}
#endif // HAVE_ZLIB
@ -52,7 +52,7 @@ FilePiece::~FilePiece() {
// zlib took ownership
file_.release();
int ret;
if (Z_OK != (ret = gzclose((gzFile)gz_file_))) {
if (Z_OK != (ret = gzclose(gz_file_))) {
std::cerr << "could not close file " << file_name_ << " using zlib" << std::endl;
abort();
}
@ -291,7 +291,7 @@ void FilePiece::ReadShift() {
ssize_t read_return;
#ifdef HAVE_ZLIB
read_return = gzread((gzFile)gz_file_, static_cast<char*>(data_.get()) + already_read, default_map_size_ - already_read);
read_return = gzread(gz_file_, static_cast<char*>(data_.get()) + already_read, default_map_size_ - already_read);
if (read_return == -1) throw GZException(gz_file_);
if (total_size_ != kBadSize) {
// Just get the position, don't actually seek. Apparently this is how you do it. . .