Skip to content

Commit

Permalink
Fix compilation with functions instrumentation
Browse files Browse the repository at this point in the history
  • Loading branch information
arkq committed May 17, 2024
1 parent f4e02d4 commit d9a5c50
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 d9a5c50

Please sign in to comment.