Skip to content

Commit

Permalink
Fix projection display.
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottslaughter committed Mar 31, 2024
1 parent 8f6b307 commit 4ab82f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fuzzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ class RequirementBuilder {
if (redop != LEGION_REDOP_LAST) {
LOG_ONCE(log_fuzz.info() << " Region redop: " << redop_name(redop));
}
if (projection == LEGION_MAX_APPLICATION_PROJECTION_ID) {
if (projection != LEGION_MAX_APPLICATION_PROJECTION_ID) {
LOG_ONCE(log_fuzz.info() << " Projection: " << projection);
}
LOG_ONCE(log_fuzz.info() << " Partition: " << partition);
Expand Down

0 comments on commit 4ab82f8

Please sign in to comment.