summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2005-06-28 12:53:33 +0000
committerBen Laurie <ben@openssl.org>2005-06-28 12:53:33 +0000
commit50d53766981c61c4d1059de12627d89ef52f6a24 (patch)
tree03d67afad427399c90247bf69d4cde65a792329b
parent5b9b62a7dbac1a752363df6d61ce115bbb01c1fb (diff)
downloadopenssl-new-50d53766981c61c4d1059de12627d89ef52f6a24.tar.gz
Replace missing character deleted in error.
-rw-r--r--crypto/pqueue/pqueue.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}