master instead of masterNo

This commit is contained in:
mattijs
2009-09-21 10:58:51 +01:00
parent 071065df8e
commit af62832bff

View File

@ -586,12 +586,12 @@ void getInterfaceSizes
{ {
// Send to master // Send to master
{ {
OPstream toMaster(Pstream::blocking, Pstream::master()); OPstream toMaster(Pstream::blocking, Pstream::masterNo());
toMaster << interfaceSizes; toMaster << interfaceSizes;
} }
// Receive from master // Receive from master
{ {
IPstream fromMaster(Pstream::blocking, Pstream::master()); IPstream fromMaster(Pstream::blocking, Pstream::masterNo());
fromMaster >> interfaceSizes; fromMaster >> interfaceSizes;
} }
} }