diff --git a/etc/prefs.csh-EXAMPLE b/etc/prefs.csh-EXAMPLE
index 3e7065fcedebdf9626cef0ff0087c688d44e1cdd..775747ea66096a1a2dab7828db2395dac76f9884 100644
--- a/etc/prefs.csh-EXAMPLE
+++ b/etc/prefs.csh-EXAMPLE
@@ -37,16 +37,17 @@
 #
 #------------------------------------------------------------------------------
 
-# Specify system compiler
-# ~~~~~~~~~~~~~~~~~~~~~~~
-set compilerInstall=system
+## Specify system compiler
+## ~~~~~~~~~~~~~~~~~~~~~~~
+#set compilerInstall=system
 
-# Specify system openmpi
-# ~~~~~~~~~~~~~~~~~~~~~~
-setenv WM_MPLIB SYSTEMOPENMPI
+## Specify system openmpi
+## ~~~~~~~~~~~~~~~~~~~~~~
+#setenv WM_MPLIB SYSTEMOPENMPI
 
 # Specify ParaView version
 # ~~~~~~~~~~~~~~~~~~~~~~~~
-setenv ParaView_VERSION 3.7.0        # eg, cvs/git version
+setenv ParaView_VERSION git        # eg, cvs/git version
+setenv ParaView_MAJOR 3.7
 
 # -----------------------------------------------------------------------------
diff --git a/etc/prefs.sh-EXAMPLE b/etc/prefs.sh-EXAMPLE
index 7d03887ab467e0d4dbbcd275e4296f98078426cc..5878e82dbc00cd71bdb9fecc9be850b1b8ea1b0c 100644
--- a/etc/prefs.sh-EXAMPLE
+++ b/etc/prefs.sh-EXAMPLE
@@ -47,6 +47,6 @@ export WM_MPLIB=SYSTEMOPENMPI
 
 # Specify ParaView version
 # ~~~~~~~~~~~~~~~~~~~~~~~~
-export ParaView_VERSION=3.7.0        # eg, cvs/git version
-
+export ParaView_VERSION=git        # eg, cvs/git version
+export ParaView_MAJOR=3.7
 # -----------------------------------------------------------------------------
diff --git a/src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoSnapDriver.C b/src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoSnapDriver.C
index 5bfa725225bd3110a0c6e744016711a83508d69f..fd1969e9769eb8a3b730201ad40829f809de19b5 100644
--- a/src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoSnapDriver.C
+++ b/src/mesh/autoMesh/autoHexMesh/autoHexMeshDriver/autoSnapDriver.C
@@ -102,9 +102,10 @@ Foam::Map<Foam::label> Foam::autoSnapDriver::getZoneBafflePatches
                             FatalErrorIn("getZoneBafflePatches(const bool)")
                                 << "Face " << faceI
                                 << " fc:" << mesh.faceCentres()[faceI]
-                                << " is in faceZone "
+                                << " in zone " << fZone.name()
+                                << " is in patch "
                                 << mesh.boundaryMesh()[oldPatchI].name()
-                                << " and in faceZone "
+                                << " and in patch "
                                 << mesh.boundaryMesh()[patchI].name()
                                 << abort(FatalError);
                         }