Skip to content

Commit b882c29

Browse files
silabs-borislrzr
authored andcommitted
uic: zpc: UIC-3488: Fix logged size in frame generator
(cherry picked from commit 525f7cdcc3fb806609bb12a930be57219e1a39d4) Forwarded: #11 Signed-off-by: Philippe Coval <philippe.coval@silabs.com>
1 parent d9c3225 commit b882c29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

applications/zpc/components/zpc_attribute_store/src/zwave_frame_generator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ void zwave_frame_generator::validate_frame(uint16_t *frame_length) const
169169
} else {
170170
std::ostringstream out;
171171
out << "Frame size (" << current_zwave_frame_index
172-
<< ") does not match the expected size (" << current_zwave_frame_index
172+
<< ") does not match the expected size (" << current_zwave_frame_size
173173
<< ")";
174174
throw std::runtime_error(out.str());
175175
}

0 commit comments

Comments
 (0)