Skip to content

Commit

Permalink
Fix default enclosing type for 1-byte bitfield (#149)
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>
  • Loading branch information
richiware authored Jul 3, 2024
1 parent 31e6519 commit 97ed0b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static int generateKind(
}
else if (size <= 8)
{
return Kind.KIND_OCTET;
return Kind.KIND_UINT8;
}
else if (size <= 16)
{
Expand Down

0 comments on commit 97ed0b3

Please sign in to comment.