Replace missing character deleted in error.

This commit is contained in:
Ben Laurie 2005-06-28 12:53:33 +00:00
parent 5b9b62a7db
commit 50d5376698

View file

@ -207,7 +207,7 @@ pqueue_print(pqueue_s *pq)
while(item != NULL)
{
printf("item" PQ_64BIT_PRINT "\n", item->priority);
printf("item\t" PQ_64BIT_PRINT "\n", item->priority);
item = item->next;
}
}