diff options
author | Zhang, Zhenhua <zhenhua.zhang@intel.com> | 2009-10-23 18:20:13 +0800 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-10-23 13:40:49 -0500 |
commit | fa10070bf9dbebe7716a82b502b846141956f07b (patch) | |
tree | e8409553ee0f578ee51b549f5435df66b673e90e | |
parent | 525ca751bd01cf994bcfa91b41d8d76ae6ca514d (diff) | |
download | ofono-fa10070bf9dbebe7716a82b502b846141956f07b.tar.bz2 |
Replace Glib type with standard C type
-rw-r--r-- | drivers/hfpmodem/hfpmodem.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/hfpmodem/hfpmodem.h b/drivers/hfpmodem/hfpmodem.h index 6c6ab6fd..c4e2a343 100644 --- a/drivers/hfpmodem/hfpmodem.h +++ b/drivers/hfpmodem/hfpmodem.h @@ -55,10 +55,10 @@ enum hfp_indicator { struct hfp_data { GAtChat *chat; - guint ag_features; - guint hf_features; - guint8 cind_pos[HFP_INDICATOR_LAST]; - gint cind_val[HFP_INDICATOR_LAST]; + unsigned int ag_features; + unsigned int hf_features; + unsigned char cind_pos[HFP_INDICATOR_LAST]; + unsigned int cind_val[HFP_INDICATOR_LAST]; }; extern void hfp_voicecall_init(); |