Ejemplo

struct MyStruct {

unsigned char field:2;

};

Solución
Utilice sólo tipos int como campos de bits.

struct MyStruct {

unsigned int field:2;
 

};