Skip to content

Commit

Permalink
s/unsigned/int/
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Jul 11, 2024
1 parent 713db8d commit 20e1aaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/metadata.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,7 @@ class ColumnChunkMetaDataBuilder::ColumnChunkMetaDataBuilderImpl {
serialized_len);

std::vector<uint8_t> encrypted_data(encryptor->CiphertextLength(serialized_len));
unsigned encrypted_len = encryptor->Encrypt(serialized_data_span, encrypted_data);
int encrypted_len = encryptor->Encrypt(serialized_data_span, encrypted_data);

const char* temp =
const_cast<const char*>(reinterpret_cast<char*>(encrypted_data.data()));
Expand Down

0 comments on commit 20e1aaf

Please sign in to comment.