diff options
Diffstat (limited to 'dep/include/openssl/pqueue.h')
-rw-r--r-- | dep/include/openssl/pqueue.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dep/include/openssl/pqueue.h b/dep/include/openssl/pqueue.h index 02386d130e9..6920a409282 100644 --- a/dep/include/openssl/pqueue.h +++ b/dep/include/openssl/pqueue.h @@ -1,7 +1,7 @@ /* crypto/pqueue/pqueue.h */ -/* +/* * DTLS implementation written by Nagendra Modadugu - * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. + * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. */ /* ==================================================================== * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. @@ -11,7 +11,7 @@ * are met: * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in @@ -69,11 +69,11 @@ typedef struct _pqueue *pqueue; typedef struct _pitem - { - PQ_64BIT priority; - void *data; - struct _pitem *next; - } pitem; + { + PQ_64BIT priority; + void *data; + struct _pitem *next; + } pitem; typedef struct _pitem *piterator; |