summaryrefslogtreecommitdiffstats
path: root/hint-data.c
diff options
context:
space:
mode:
Diffstat (limited to 'hint-data.c')
-rw-r--r--hint-data.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/hint-data.c b/hint-data.c
index bd41cf0..0aae830 100644
--- a/hint-data.c
+++ b/hint-data.c
@@ -31,19 +31,16 @@
#include "hint-data.h"
-int hint_compare(struct hint_data *first_hint,
- struct hint_data *other_hint) {
+int hint_compare(struct hint_data* first_hint, struct hint_data* other_hint) {
if (first_hint == other_hint) {
return 0;
- } else if ((first_hint && other_hint) &&
- (first_hint->hint_id == other_hint->hint_id)) {
+ } else if ((first_hint && other_hint) && (first_hint->hint_id == other_hint->hint_id)) {
return 0;
} else {
return 1;
}
}
-void hint_dump(struct hint_data *hint)
-{
+void hint_dump(struct hint_data* hint) {
ALOGV("hint_id: %lu", hint->hint_id);
}