Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devtools/etdump/etdump_flatcc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ void ETDumpGen::set_debug_buffer(Span<uint8_t> buffer) {
Result<BufferDataSink> bds_ret = BufferDataSink::create(buffer);
ET_CHECK_MSG(
bds_ret.ok(),
"Failed to write tensor with error 0x%" PRIx32,
"Failed to create data sink from debug buffer with error 0x%" PRIx32,
static_cast<uint32_t>(bds_ret.error()));

buffer_data_sink_ = std::move(bds_ret.get());
Expand Down
Loading