From d032faff68b2b45e925e31a4702cbbd5e9111ad3 Mon Sep 17 00:00:00 2001 From: mattijs Date: Wed, 18 Nov 2009 11:40:09 +0000 Subject: [PATCH] corrected debug message --- src/Pstream/mpi/UPstream.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Pstream/mpi/UPstream.C b/src/Pstream/mpi/UPstream.C index 3623f5da58..d05fe2ad9a 100644 --- a/src/Pstream/mpi/UPstream.C +++ b/src/Pstream/mpi/UPstream.C @@ -177,7 +177,7 @@ void Foam::reduce(scalar& Value, const sumOp& bop) { if (Pstream::debug) { - Pout<< "UPstream::reduce : value:" << Value << endl; + Pout<< "Foam::reduce : value:" << Value << endl; } if (!UPstream::parRun()) @@ -452,7 +452,7 @@ void Foam::reduce(scalar& Value, const sumOp& bop) if (Pstream::debug) { - Pout<< "UPstream::reduce : reduced value:" << Value << endl; + Pout<< "Foam::reduce : reduced value:" << Value << endl; } }