summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/pqueue/pq_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/pqueue/pq_test.c')
-rw-r--r--src/lib/libcrypto/pqueue/pq_test.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libcrypto/pqueue/pq_test.c b/src/lib/libcrypto/pqueue/pq_test.c
index 8d496dfc65..4cd785500c 100644
--- a/src/lib/libcrypto/pqueue/pq_test.c
+++ b/src/lib/libcrypto/pqueue/pq_test.c
@@ -1,7 +1,7 @@
1/* crypto/pqueue/pq_test.c */ 1/* crypto/pqueue/pq_test.c */
2/* 2/*
3 * DTLS implementation written by Nagendra Modadugu 3 * DTLS implementation written by Nagendra Modadugu
4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. 4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
5 */ 5 */
6/* ==================================================================== 6/* ====================================================================
7 * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. 7 * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved.
@@ -11,7 +11,7 @@
11 * are met: 11 * are met:
12 * 12 *
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 15 *
16 * 2. Redistributions in binary form must reproduce the above copyright 16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in 17 * notice, this list of conditions and the following disclaimer in
@@ -61,7 +61,7 @@
61 61
62int 62int
63main(void) 63main(void)
64 { 64{
65 pitem *item; 65 pitem *item;
66 pqueue pq; 66 pqueue pq;
67 67
@@ -87,9 +87,9 @@ main(void)
87 87
88 pqueue_print(pq); 88 pqueue_print(pq);
89 89
90 for(item = pqueue_pop(pq); item != NULL; item = pqueue_pop(pq)) 90 for (item = pqueue_pop(pq); item != NULL; item = pqueue_pop(pq))
91 pitem_free(item); 91 pitem_free(item);
92 92
93 pqueue_free(pq); 93 pqueue_free(pq);
94 return 0; 94 return 0;
95 } 95}