Skip to content

Commit

Permalink
Fix compilation with functions instrumentation (#33504)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkq authored and pull[bot] committed Oct 31, 2024
1 parent 7bb4f60 commit 1107888
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/CommandHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,8 @@ CHIP_ERROR TestOnlyExtractCommandPathFromNextInvokeRequest(TLV::TLVReader & invo
case CommandHandler::NlFaultInjectionType::SkipSecondResponse:
return "Single InvokeResponseMessages. Dropping response to second request";
}
VerifyOrDieWithMsg(false, DataManagement, "TH Failure: Unexpected fault type");
ChipLogError(DataManagement, "TH Failure: Unexpected fault type");
chipAbort();
}

} // anonymous namespace
Expand Down

0 comments on commit 1107888

Please sign in to comment.