diff --git a/src/OpenFOAM/algorithms/indexedOctree/labelBits.H b/src/OpenFOAM/algorithms/indexedOctree/labelBits.H index b6a6b10db2..e8037a3bd3 100644 --- a/src/OpenFOAM/algorithms/indexedOctree/labelBits.H +++ b/src/OpenFOAM/algorithms/indexedOctree/labelBits.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -55,14 +55,14 @@ class labelBits label data_; - inline static label pack(const label val, const direction bits) + inline static label pack(const uLabel val, const direction bits) { # ifdef FULLDEBUG if (bits > 7 || (((val<<3)>>3) != val)) { FatalErrorIn ( - "labelBits::pack(const label, const direction)" + "labelBits::pack(const uLabel, const direction)" ) << "Direction " << bits << " outside range 0..7" << abort(FatalError); }