From ab65ecbe01c4dc338837373924eae062a21b8994 Mon Sep 17 00:00:00 2001 From: Gerardo Ganis <Gerardo.Ganis@cern.ch> Date: Wed, 9 Dec 2009 15:39:17 +0000 Subject: [PATCH] Fix warning from the nightlies git-svn-id: http://root.cern.ch/svn/root/trunk@31734 27541ba8-7e3a-0410-8455-c3a389f83636 --- proof/proof/src/TProofServ.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proof/proof/src/TProofServ.cxx b/proof/proof/src/TProofServ.cxx index daf89741c14..e4da9b0ab8e 100644 --- a/proof/proof/src/TProofServ.cxx +++ b/proof/proof/src/TProofServ.cxx @@ -1162,7 +1162,7 @@ void TProofServ::HandleSocketInput() fQueuedMsg->Add(mess); PDB(kGlobal, 1) Info("HandleSocketInput", "message of type %d enqueued; sz: %d", - mess->What(), fQueuedMsg->GetSize()); + what, fQueuedMsg->GetSize()); mess = 0; } @@ -1172,7 +1172,7 @@ void TProofServ::HandleSocketInput() // Add to the queue PDB(kCollect, 1) Info("HandleSocketInput", "processing enqueued message of type %d; left: %d", - (mess ? mess->What() : -1), fQueuedMsg->GetSize()); + what, fQueuedMsg->GetSize()); all = 1; SafeDelete(mess); mess = (TMessage *) fQueuedMsg->First(); -- GitLab