Index: config/gen/platform/darwin/dl.c
===================================================================
--- config/gen/platform/darwin/dl.c	(revision 21997)
+++ config/gen/platform/darwin/dl.c	(working copy)
@@ -106,7 +106,7 @@
     else
     { /* bundle-style loading didn't work; try dylib-style before giving up */
         const struct mach_header *header =
-                NSAddImage( fullpath,
+                NSAddImage(fullpath,
                             NSADDIMAGE_OPTION_RETURN_ON_ERROR
                             | NSADDIMAGE_OPTION_WITH_SEARCHING);
 
@@ -171,8 +171,8 @@
             found_symbol = NSLookupAndBindSymbol(fixed_name);
         }
     }
-    else if (    ((struct mach_header *)handle)->magic == MH_MAGIC
-              || ((struct mach_header *)handle)->magic == MH_CIGAM )
+    else if (((struct mach_header *)handle)->magic == MH_MAGIC
+              || ((struct mach_header *)handle)->magic == MH_CIGAM)
     {
         if (NSIsSymbolNameDefinedInImage(handle, fixed_name))
         {
@@ -206,8 +206,8 @@
 int
 Parrot_dlclose(void *handle)
 {
-    if ( handle && !( ((struct mach_header *)handle)->magic == MH_MAGIC
-                   || ((struct mach_header *)handle)->magic == MH_CIGAM ) )
+    if (handle && !(((struct mach_header *)handle)->magic == MH_MAGIC
+                   || ((struct mach_header *)handle)->magic == MH_CIGAM))
     {
         unsigned long options = NSUNLINKMODULE_OPTION_NONE;
 #ifdef __ppc__
Index: config/gen/platform/darwin/memalign.c
===================================================================
--- config/gen/platform/darwin/memalign.c	(revision 21997)
+++ config/gen/platform/darwin/memalign.c	(working copy)
@@ -39,7 +39,7 @@
     size_t padding = 0;
     size_t amountToAllocate = 0;
 
-    if ( effectiveAlign < sizeof (void *) )
+    if (effectiveAlign < sizeof (void *))
     {
         effectiveAlign = roundUpPowerOf2(sizeof (void *));
     }
@@ -48,7 +48,7 @@
         effectiveAlign = roundUpPowerOf2(effectiveAlign);
     }
 
-    if ( effectiveAlign < sizeof (memalign_marker_t) )
+    if (effectiveAlign < sizeof (memalign_marker_t))
     {
         padding = sizeof (memalign_marker_t);
     }
@@ -64,7 +64,7 @@
         kern_return_t status = vm_allocate(mach_task_self(), &p,
                                                 amountToAllocate, 1);
 
-        if ( status != KERN_SUCCESS )
+        if (status != KERN_SUCCESS)
         {
             return NULL;
         }
@@ -90,11 +90,11 @@
             marker->start = usedPageBase;
             marker->size = returnAddress + size - usedPageBase;
 
-            if ( usedPageBase > p )
+            if (usedPageBase > p)
             {
                 status = vm_deallocate(mach_task_self(), p, usedPageBase - p);
 
-                if ( status != KERN_SUCCESS )
+                if (status != KERN_SUCCESS)
                 {
                     fprintf(stderr,
                             "Parrot_memalign(%zx, %zx) failed to deallocate extra header space.\n",
@@ -104,12 +104,12 @@
 
             firstUnneededPage = roundUpToPageBoundary(returnAddress + size);
 
-            if ( firstUnneededPage < p + amountToAllocate )
+            if (firstUnneededPage < p + amountToAllocate)
             {
                 status = vm_deallocate(mach_task_self(), firstUnneededPage,
                                     p + amountToAllocate - firstUnneededPage);
 
-                if ( status != KERN_SUCCESS )
+                if (status != KERN_SUCCESS)
                 {
                     fprintf(stderr,
                             "Parrot_memalign(%zx, %zx) failed to deallocate extra footer space.\n",
@@ -130,7 +130,7 @@
     kern_return_t status = vm_deallocate(mach_task_self(),
                                             marker->start, marker->size);
 
-    if ( status != KERN_SUCCESS )
+    if (status != KERN_SUCCESS)
     {
         fprintf(stderr, "Parrot_free_memalign(%p) failed!\n", p);
     }
