From e3faba1d5d4ba78411dcd20477f85d8b4ed48d59 Mon Sep 17 00:00:00 2001
From: David MacMahon <davidm@astro.berkeley.edu>
Date: Wed, 13 Jan 2010 00:56:15 -0800
Subject: [PATCH 3/4] Uncrustified

---
 src/pdfutils.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/pdfutils.c b/src/pdfutils.c
index b24caf2..a6fbdb8 100644
--- a/src/pdfutils.c
+++ b/src/pdfutils.c
@@ -946,20 +946,20 @@ plAlloc2dGrid( PLFLT ***f, PLINT nx, PLINT ny )
 {
     PLUINT i;
     size_t size1, size2;
-    PLFLT *f00;
+    PLFLT  *f00;
 
     /* size1 is size of (one) array of nx elements of type (PLFLT *) */
-    size1 = ((PLUINT)nx) * sizeof(PLFLT *);
+    size1 = ((PLUINT) nx ) * sizeof ( PLFLT * );
 
     /* size2 is total size of nx arrays of ny elements of type (PLFLT) */
-    size2 = ((PLUINT)nx) * ((PLUINT)ny) * sizeof(PLFLT);
+    size2 = ((PLUINT) nx ) * ((PLUINT) ny ) * sizeof ( PLFLT );
 
     /* Allocate single block of memory for everything */
     if (( *f = (PLFLT **) calloc( 1, size1 + size2 )) == NULL )
         plexit( "Memory allocation error in \"plAlloc2dGrid\"" );
 
     /* f00 is pointer to grid element [0][0] */
-    f00 = (PLFLT *)(*f + nx);
+    f00 = (PLFLT *) ( *f + nx );
 
     /* Initialize array of nx pointers */
     for ( i = 0; i < nx; i++ )
-- 
1.6.6

