diff options
author | Denis Kenzior <denis.kenzior@intel.com> | 2009-10-22 17:23:44 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-10-23 17:05:54 -0500 |
commit | 7b3ab433ebadbf583e8adbaa656f8d975899738b (patch) | |
tree | 7c3fae3c8c8cee9b98c66b48f84233459fcab386 /src | |
parent | 05d7cf9ee13105c6bb99c019e7aa37d9d52f89c1 (diff) | |
download | ofono-7b3ab433ebadbf583e8adbaa656f8d975899738b.tar.bz2 |
Refactor: Use ofono_bool_t instead of int
Diffstat (limited to 'src')
-rw-r--r-- | src/gprs.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -49,14 +49,13 @@ enum gprs_context_type { struct ofono_gprs { GSList *contexts; - int attached; - int roaming_allowed; - int powered; + ofono_bool_t attached; + ofono_bool_t roaming_allowed; + ofono_bool_t powered; int status; int location; int cellid; int technology; - int flags; struct context *current_context; DBusMessage *pending; |