Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9987905

Browse files
kpschoedelpull[bot]
authored andcommittedJul 27, 2021
Fix Build on Linux (no_progress_logging) (pull_request) (#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)`
1 parent 6449e72 commit 9987905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/MessageDef/SubscribeRequest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ CHIP_ERROR SubscribeRequest::Parser::CheckSchemaValidity() const
106106
ReturnLogErrorOnFailure(reader.Get(minInterval));
107107
PRETTY_PRINT("\tMinInterval = 0x%" PRIx16 ",", minInterval);
108108
}
109-
break;
110109
#endif // CHIP_DETAIL_LOGGING
110+
break;
111111
case kCsTag_MaxInterval:
112112
VerifyOrReturnLogError(!(TagPresenceMask & (1 << kCsTag_MaxInterval)), CHIP_ERROR_INVALID_TLV_TAG);
113113
TagPresenceMask |= (1 << kCsTag_MaxInterval);

0 commit comments

Comments
 (0)
Please sign in to comment.