freetdm: ftmod_pritap - Use uint8 for flags (I smell a bug somewhere with bitfields)

This commit is contained in:
Moises Silva 2012-10-23 00:52:29 -05:00
parent 7d5a4a7172
commit d88e79e632
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ typedef struct {
ftdm_number_t callednum;
ftdm_channel_t *fchan;
char callingname[80];
int proceeding:1;
int inuse:1;
uint8_t proceeding;
uint8_t inuse;
} passive_call_t;
typedef enum pritap_iface {