Skip to content

Commit

Permalink
traverser: correct typo in match_kind_t
Browse files Browse the repository at this point in the history
Problem: PRISTINE is spelled PRESTINE in match_kind_t.

Correct the spelling.
  • Loading branch information
milroy committed Jun 28, 2024
1 parent 7adf989 commit 35d7e97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resource/traversers/dfu_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ const std::vector<Resource> &dfu_impl_t::test (vtx_t u,
pristine = false;
ret = &(match_resources->with);
} else {
spec = pristine? match_kind_t::PRESTINE_NONE_MATCH
spec = pristine? match_kind_t::PRISTINE_NONE_MATCH
: match_kind_t::NONE_MATCH;
}

Expand Down
2 changes: 1 addition & 1 deletion resource/traversers/dfu_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ enum class visit_t { DFV, UPV };
enum class match_kind_t { RESOURCE_MATCH,
SLOT_MATCH,
NONE_MATCH,
PRESTINE_NONE_MATCH };
PRISTINE_NONE_MATCH };

struct jobmeta_t {

Expand Down

0 comments on commit 35d7e97

Please sign in to comment.