Skip to content

Commit

Permalink
Fix --sequence-id-range bug
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkotila committed Dec 30, 2024
1 parent ea2024d commit 36f242d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command_line_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ CLParser::ParseCommandLine(int argc, char** argv)
case long_option_idx_base + 30: {
std::string arg = optarg;
int64_t start_id;
int64_t end_id;
int64_t end_id{INT64_MAX};
size_t pos = 0;
int index = 0;
while (pos != std::string::npos) {
Expand Down

0 comments on commit 36f242d

Please sign in to comment.