List impl minor cleanups

This commit is contained in:
Dan Buch
2016-04-17 18:59:25 -04:00
parent 80b8ecc4fa
commit 58a2ed31f4
2 changed files with 1 additions and 7 deletions

View File

@@ -237,7 +237,7 @@ void List_dump(List *list)
}
printf("`");
}
printf("-> [%d] ListNode .value = %p (%s)\n", i, cur->value, cur->value);
printf("-> [%d] ListNode .value = %p (%s)\n", i, cur->value, (char *)cur->value);
i++;
}