misc: Deal with smatch warnings about the bitfields

Use unsigned ints for the bitfield.
This commit is contained in:
Holger Hans Peter Freyther 2012-03-02 14:14:33 +01:00
parent 52746469ff
commit 1e57eb6112
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ struct gprs_ns_inst {
struct {
struct osmo_fd fd;
uint32_t local_ip;
int enabled:1;
unsigned int enabled:1;
} frgre;
};