Skip to content

Commit c30b0ee

Browse files
committed
cast to (void*)
1 parent 9764a44 commit c30b0ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/dll.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,9 @@ void dll_show_all_entries(void){
252252

253253
NDN_LOG_DEBUG("Showing full dll starting with oldest entry:\n");
254254
dll_entry_t* tmp = head->next;
255-
printf("%p\n", head);
255+
printf("%p\n", (void*) head);
256256
while (tmp != head){
257-
printf("%p\n", tmp);
257+
printf("%p\n", (void*) tmp);
258258
tmp = tmp->next;
259259
}
260260
}

0 commit comments

Comments
 (0)