Skip to content

Commit

Permalink
Aiieee. Add a missing underscore.
Browse files Browse the repository at this point in the history
Change-Id: I38ebf3a6886bf8142836565652110f343a56877a
Reviewed-on: https://code-review.googlesource.com/c/re2/+/53872
Reviewed-by: Paul Wankadia <[email protected]>
  • Loading branch information
junyer committed Mar 27, 2020
1 parent 05bed73 commit 209eda1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions re2/set.cc
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ bool RE2::Set::Match(const StringPiece& text, std::vector<int>* v,
if (dfa_failed) {
if (options_.log_errors())
LOG(ERROR) << "DFA out of memory: "
<< "program size " << prog->size() << ", "
<< "list count " << prog->list_count() << ", "
<< "bytemap range " << prog->bytemap_range();
<< "program size " << prog_->size() << ", "
<< "list count " << prog_->list_count() << ", "
<< "bytemap range " << prog_->bytemap_range();
if (error_info != NULL)
error_info->kind = kOutOfMemory;
return false;
Expand Down

0 comments on commit 209eda1

Please sign in to comment.