Index: trunk/ippTools/src/pxtools.h
===================================================================
--- trunk/ippTools/src/pxtools.h	(revision 39053)
+++ trunk/ippTools/src/pxtools.h	(revision 39175)
@@ -206,20 +206,20 @@
 
 #define PXOPT_COPY_PRIMITIVE(from, to, type, suffix, oldname, newname, newcomment) \
-{ \
-    psMetadataItem *item = psMetadataLookup(from, oldname); \
-    if (!item) { \
+    {									\
+      psMetadataItem *item = psMetadataLookup(from, oldname);		\
+      if (!item) {							\
         psError(PS_ERR_UNKNOWN, false, "failed to lookup value for %s", oldname); \
-        return false; \
-    } \
-    psAssert(item->comment, "metadata item comment should be defined"); \
-\
-    if (psStrcasestr(item->comment, "(found)")) { \
+        return false;							\
+      }									\
+      psAssert(item->comment, "metadata item comment should be defined"); \
+									\
+      if (psStrcasestr(item->comment, "(found)")) {			\
         if (!psMetadataAdd##suffix(to, PS_LIST_TAIL, newname, PS_META_DUPLICATE_OK, newcomment, item->data.suffix)) { \
-            psError(PS_ERR_UNKNOWN, false, "failed to add item " newname); \
-            psFree(to); \
-            return false; \
-        } \
-    } \
-}
+	  psError(PS_ERR_UNKNOWN, false, "failed to add item " newname); \
+	  psFree(to);							\
+	  return false;							\
+        }								\
+      }									\
+    }
 
 #define PXOPT_COPY_V(from, to, type, suffix, oldname, newname, comment) \
