Fixed client serials not being unique on Windows (bug 5285, r=psychonic).

This commit is contained in:
Asher Baker 2012-04-26 16:58:18 +01:00
parent cd729f054c
commit 9e45f2da9f

View File

@ -56,7 +56,7 @@ union serial_t
uint32_t value; uint32_t value;
struct struct
{ {
uint8_t index; uint32_t index : 8;
uint32_t serial : 24; uint32_t serial : 24;
} bits; } bits;
}; };