Skip to content

Commit

Permalink
make linters happy
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde committed Aug 21, 2023
1 parent 80b607b commit a3729ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zstd_point_cloud_transport/src/zstd_publisher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ZstdPublisher::TypedEncodeResult ZstdPublisher::encodeTyped(
comp_buffer.resize(est_compress_size);
auto compress_size =
ZSTD_compress(
static_cast<void *>(omp_buffer.data()), est_compress_size, &raw.data[0],
static_cast<void *>(comp_buffer.data()), est_compress_size, &raw.data[0],
raw.data.size(), this->encode_level_);

comp_buffer.resize(compress_size);
Expand Down

0 comments on commit a3729ec

Please sign in to comment.