Exemplo

struct MyStruct {

unsigned char field:2;

};

Solução
Apenas utilize tipos int como campos de bit.

struct MyStruct {

unsigned int field:2;
 

};