diff --git a/src/OpenFOAM/containers/Lists/FixedList/FixedListIO.C b/src/OpenFOAM/containers/Lists/FixedList/FixedListIO.C
index 904c4f2902f17880759e57c90a3525c74b1c3b12..a18f16fb3593db12fa7261a0962d099ef82a1b1d 100644
--- a/src/OpenFOAM/containers/Lists/FixedList/FixedListIO.C
+++ b/src/OpenFOAM/containers/Lists/FixedList/FixedListIO.C
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2004-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
diff --git a/src/OpenFOAM/containers/Lists/List/ListIO.C b/src/OpenFOAM/containers/Lists/List/ListIO.C
index 8699f6126a6a2a6bf303aa5bfdaf6168c107da4a..869437cf6a945ba91b8b33ace2a44e4dbfd06f3b 100644
--- a/src/OpenFOAM/containers/Lists/List/ListIO.C
+++ b/src/OpenFOAM/containers/Lists/List/ListIO.C
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2004-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
diff --git a/src/OpenFOAM/db/IOstreams/token/token.C b/src/OpenFOAM/db/IOstreams/token/token.C
index 5d7ce3f2f708c5afb4fa251c6ee1291fb7a1fddf..dd9e20388b803ab2e4e229a9cfe7006c19af2745 100644
--- a/src/OpenFOAM/db/IOstreams/token/token.C
+++ b/src/OpenFOAM/db/IOstreams/token/token.C
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2004-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
@@ -92,8 +92,11 @@ Foam::token::compound& Foam::token::transferCompoundToken(const Istream& is)
     {
         if (compoundTokenPtr_->empty())
         {
-            FatalIOErrorIn("token::transferCompoundToken(const Istream& is)", is)
-                << "compound has already been transfered from token\n    "
+            FatalIOErrorIn
+            (
+                "token::transferCompoundToken(const Istream& is)",
+                is
+            )   << "compound has already been transfered from token\n    "
                 << info() << abort(FatalIOError);
         }
         else
diff --git a/tutorials/mesh/cvMesh/simpleShapes/system/cvMeshDict b/tutorials/mesh/cvMesh/simpleShapes/system/cvMeshDict
index db4183588be44ea4de3be9c0e37597223c4e7610..d2e7987c0fe8bfea1f4b9c25c5a92d17834bbfc8 100644
--- a/tutorials/mesh/cvMesh/simpleShapes/system/cvMeshDict
+++ b/tutorials/mesh/cvMesh/simpleShapes/system/cvMeshDict
@@ -384,6 +384,9 @@ polyMeshFiltering
     edgeCollapseGuardFraction               0.3;
     // Only collapse face to point if high aspect ratio
     maxCollapseFaceToPointSideLengthCoeff   0.35;
+
+    // Write the tet-dual mesh for post-processing
+    writeTetDualMesh                        yes;
 }