Skip to content

Commit

Permalink
Fix Build on Linux (no_progress_logging) (pull_request) (project-chip…
Browse files Browse the repository at this point in the history
…#8283)

#### Problem

`Builds / Build on Linux (no_progress_logging) (pull_request)` fails to
build due to a misplaced `break`.

#### Change overview

Move it.

#### Testing

`Builds / Build on Linux (no_progress_logging) (pull_request)`
  • Loading branch information
kpschoedel authored Jul 10, 2021
1 parent 1fde45f commit 0e19e0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/MessageDef/SubscribeRequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ CHIP_ERROR SubscribeRequest::Parser::CheckSchemaValidity() const
ReturnLogErrorOnFailure(reader.Get(minInterval));
PRETTY_PRINT("\tMinInterval = 0x%" PRIx16 ",", minInterval);
}
break;
#endif // CHIP_DETAIL_LOGGING
break;
case kCsTag_MaxInterval:
VerifyOrReturnLogError(!(TagPresenceMask & (1 << kCsTag_MaxInterval)), CHIP_ERROR_INVALID_TLV_TAG);
TagPresenceMask |= (1 << kCsTag_MaxInterval);
Expand Down

0 comments on commit 0e19e0d

Please sign in to comment.