From 606914c474e341d415df4ed486a2597ded65642b Mon Sep 17 00:00:00 2001 From: Frederico Linhares Date: Tue, 25 Aug 2026 16:51:12 -0300 Subject: fixt Use correct return type for read_ui16 --- src/blu_cat/com/binary_reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/blu_cat/com/binary_reader.cpp') diff --git a/src/blu_cat/com/binary_reader.cpp b/src/blu_cat/com/binary_reader.cpp index d572ec9..f58eba3 100644 --- a/src/blu_cat/com/binary_reader.cpp +++ b/src/blu_cat/com/binary_reader.cpp @@ -67,7 +67,7 @@ BinaryReader::read_ui8() return this->data[this->_pointer++]; } -UI32 +UI16 BinaryReader::read_ui16() { UI8 b1{this->data[_pointer++]}, b2{this->data[_pointer++]}; -- cgit v1.2.3