From: Ben Laurie Date: Tue, 28 Jun 2005 12:53:33 +0000 (+0000) Subject: Replace missing character deleted in error. X-Git-Tag: OpenSSL_0_9_8~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50d53766981c61c4d1059de12627d89ef52f6a24;p=openssl Replace missing character deleted in error. --- 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; } }