From 01c729b2900adf41be8ce268592ead1f3f53b893 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 27 May 2010 13:25:30 +0000 Subject: [PATCH] adapted to coding style --- src/h5core/h5_fcmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/h5core/h5_fcmp.c b/src/h5core/h5_fcmp.c index 15995f9..606e39b 100644 --- a/src/h5core/h5_fcmp.c +++ b/src/h5core/h5_fcmp.c @@ -16,8 +16,8 @@ h5priv_fcmp ( // Make sure maxUlps is non-negative and small enough that the // default NAN won't compare as equal to anything. - assert(maxUlps > 0 && maxUlps < 4 * 1024 * 1024); - assert ( sizeof(long long) == sizeof(h5_int64_t) ); + assert (maxUlps > 0 && maxUlps < 4 * 1024 * 1024); + assert (sizeof (long long) == sizeof (h5_int64_t) ); // Make [ab]Int lexicographically ordered as a twos-complement int h5_int64_t aInt = *(h5_int64_t*)&A;