summaryrefslogtreecommitdiffstats
path: root/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'list.c')
-rw-r--r--list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/list.c b/list.c
index 0fe8de2..30a1694 100644
--- a/list.c
+++ b/list.c
@@ -114,7 +114,7 @@ void dump_list(struct list_node *head)
if (head == NULL)
return;
- printf("List:\n");
+ ALOGV("List:\n");
while ((current_node = current_node->next)) {
if (current_node->dump) {