Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Nov 27, 2023
1 parent 95865a2 commit b83ea1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ortools/base/gzipstring.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ bool GunzipString(absl::string_view str, std::string* out) {
return false;
}

zs.next_in = static_cast<Bytef*>(str.data());
zs.next_in = (Bytef*)str.data();
zs.avail_in = str.size();

int status;
Expand Down

0 comments on commit b83ea1d

Please sign in to comment.