Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
illwieckz committed Jul 6, 2024
1 parent 20c49a2 commit c387d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crnlib/crn_packed_uint.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct packed_uint {
return (m_buf[0] << 8U) | m_buf[1];
case 3:
return (m_buf[0] << 16U) | (m_buf[1] << 8U) | (m_buf[2]);
default:
case 4:
return (m_buf[0] << 24U) | (m_buf[1] << 16U) | (m_buf[2] << 8U) | (m_buf[3]);
}
}
Expand Down

0 comments on commit c387d2a

Please sign in to comment.