Skip to content

Commit 20c49a2

Browse files
committed
test
1 parent c83c921 commit 20c49a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/crn_defs.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ struct crn_packed_uint {
232232
return (m_buf[0] << 8U) | m_buf[1];
233233
case 3:
234234
return (m_buf[0] << 16U) | (m_buf[1] << 8U) | (m_buf[2]);
235-
default:
235+
case 4:
236236
return (m_buf[0] << 24U) | (m_buf[1] << 16U) | (m_buf[2] << 8U) | (m_buf[3]);
237237
}
238238
}

0 commit comments

Comments
 (0)