This commit is contained in:
Marty Kraimer
2012-08-17 06:46:31 -04:00
parent ef3d829527
commit 99d55ef56b
9 changed files with 65 additions and 65 deletions
+4 -4
View File
@@ -393,7 +393,7 @@ class ChannelPutRequesterImpl : public ChannelPutRequester
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << m_channelName << "] channel put create: " << status.toString() << std::endl;
}
@@ -417,7 +417,7 @@ class ChannelPutRequesterImpl : public ChannelPutRequester
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << m_channelName << "] channel get: " << status.toString() << std::endl;
}
@@ -446,7 +446,7 @@ class ChannelPutRequesterImpl : public ChannelPutRequester
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << m_channelName << "] channel put: " << status.toString() << std::endl;
}
@@ -498,7 +498,7 @@ public:
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << channel->getChannelName() << "] channel create: " << status.toString() << std::endl;
}