From 6f6253dccb308bd03c2bc76fc844fe7921d39d7c Mon Sep 17 00:00:00 2001 From: jsing <> Date: Mon, 21 Apr 2014 16:00:04 +0000 Subject: KNF. --- src/lib/libcrypto/pqueue/pqueue.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/lib/libcrypto/pqueue/pqueue.h') diff --git a/src/lib/libcrypto/pqueue/pqueue.h b/src/lib/libcrypto/pqueue/pqueue.h index 87fc9037c8..729e9abaf2 100644 --- a/src/lib/libcrypto/pqueue/pqueue.h +++ b/src/lib/libcrypto/pqueue/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 @@ -66,12 +66,11 @@ typedef struct _pqueue *pqueue; -typedef struct _pitem - { +typedef struct _pitem { unsigned char priority[8]; /* 64-bit value in big-endian encoding */ void *data; struct _pitem *next; - } pitem; +} pitem; typedef struct _pitem *piterator; -- cgit v1.2.3-55-g6feb