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

This commit is contained in:
Asher Baker 2012-04-26 17:03:44 +01:00
parent b231caae50
commit 5f312fb76e

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;
}; };