1
1

* the cid in the header is only 16 bits, so limit our max cid to what can fit in there.

This commit was SVN r7639.
Этот коммит содержится в:
Brian Barrett 2005-10-05 15:43:28 +00:00
родитель 37123ed430
Коммит b7ef094766

Просмотреть файл

@ -52,7 +52,7 @@ mca_pml_ob1_t mca_pml_ob1 = {
mca_pml_ob1_probe, mca_pml_ob1_probe,
mca_pml_ob1_start, mca_pml_ob1_start,
32768, 32768,
(0x7fffffff) (0xffff)
} }
}; };