summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDenis Kenzior <denis.kenzior@intel.com>2009-12-01 12:04:14 -0600
committerDenis Kenzior <denkenz@gmail.com>2009-12-01 12:42:23 -0600
commit55572b6e69ca5b39db5f107fdb60fcb249fc838b (patch)
tree83c972669a606d5b43125727f9f5c94359b26321 /include
parent7254f8ac867a3ff038229ba48b3b092892432834 (diff)
downloadofono-55572b6e69ca5b39db5f107fdb60fcb249fc838b.tar.bz2
Style: Use unsigned int instead of unsigned
Diffstat (limited to 'include')
-rw-r--r--include/gprs-context.h3
-rw-r--r--include/types.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/include/gprs-context.h b/include/gprs-context.h
index ba026e5e..2f547da1 100644
--- a/include/gprs-context.h
+++ b/include/gprs-context.h
@@ -62,7 +62,8 @@ struct ofono_gprs_context_driver {
ofono_gprs_context_cb_t cb, void *data);
};
-void ofono_gprs_context_deactivated(struct ofono_gprs_context *gc, unsigned id);
+void ofono_gprs_context_deactivated(struct ofono_gprs_context *gc,
+ unsigned int id);
int ofono_gprs_context_driver_register(const struct ofono_gprs_context_driver *d);
void ofono_gprs_context_driver_unregister(const struct ofono_gprs_context_driver *d);
diff --git a/include/types.h b/include/types.h
index 79e6d4cd..9ad31b9b 100644
--- a/include/types.h
+++ b/include/types.h
@@ -83,7 +83,7 @@ struct ofono_phone_number {
};
struct ofono_call {
- unsigned id;
+ unsigned int id;
int type;
int direction;
int status;