Skip to content

Commit

Permalink
Limit entries in bitmask to 64 bit.
Browse files Browse the repository at this point in the history
The last entries had 65 and 66 bit and were too large to have an
integer representation.
  • Loading branch information
olebole committed May 21, 2017
1 parent 9590f45 commit f221e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/osb/bitfields.c
Expand Up @@ -32,7 +32,7 @@ unsigned XINT bitmask[] = { 0, /* MACHDEP */
01777777777777777777, 03777777777777777777, 07777777777777777777,
017777777777777777777, 037777777777777777777, 077777777777777777777,
0177777777777777777777, 0377777777777777777777, 0777777777777777777777,
01777777777777777777777, 03777777777777777777777, 07777777777777777777777
01777777777777777777777
};


Expand Down

0 comments on commit f221e4b

Please sign in to comment.