Skip to content

Commit

Permalink
Remove extra semi colon from internal_repo_rocksdb/repo/table/sst_fil…
Browse files Browse the repository at this point in the history
…e_reader.cc

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D57632757

fbshipit-source-id: 1dbad2a2e185381e225df8b9027033e06aeaf01b
  • Loading branch information
r-barnes authored and facebook-github-bot committed May 22, 2024
1 parent ad6f6e2 commit 1827f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion table/sst_file_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Status SstFileReader::VerifyNumEntries(const ReadOptions& read_options) {
uint64_t num_read = 0;
for (; internal_iter->Valid(); internal_iter->Next()) {
++num_read;
};
}
s = internal_iter->status();
if (!s.ok()) {
return s;
Expand Down

0 comments on commit 1827f3f

Please sign in to comment.