Fix ROOM on Windows.
authorStas Boukarev <stassats@gmail.com>
Tue, 20 Aug 2013 21:12:00 +0000 (01:12 +0400)
committerStas Boukarev <stassats@gmail.com>
Tue, 20 Aug 2013 21:12:00 +0000 (01:12 +0400)
A bit-field inside the page struct is defined as "unsigned fields", on
Linux it's packed into 8 bits, but on 32-bit Windows into 32-bits. The
code in room expects the former. Defining it as "unsigned char fields"
solves the problem.


No differences found