From 50d53766981c61c4d1059de12627d89ef52f6a24 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Tue, 28 Jun 2005 12:53:33 +0000 Subject: [PATCH] Replace missing character deleted in error. --- crypto/pqueue/pqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/pqueue/pqueue.c b/crypto/pqueue/pqueue.c index 1d69952362..5cc18527f8 100644 --- a/crypto/pqueue/pqueue.c +++ b/crypto/pqueue/pqueue.c @@ -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; } }