summaryrefslogtreecommitdiff
path: root/ACE/examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp')
-rw-r--r--ACE/examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp b/ACE/examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp
index fc96ec71dbb..de1ace338ff 100644
--- a/ACE/examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp
+++ b/ACE/examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp
@@ -26,10 +26,10 @@ ACE_TMAIN (int, ACE_TCHAR *[])
while ((n = server.recv (&band, &msg, (ACE_Str_Buf *) 0, &flags)) >= 0)
{
if (msg.len == 0)
- break;
+ break;
else
- ACE_DEBUG ((LM_DEBUG, "%4d (%4d): %*s",
- msg.len, band, msg.len, msg.buf));
+ ACE_DEBUG ((LM_DEBUG, "%4d (%4d): %*s",
+ msg.len, band, msg.len, msg.buf));
flags = MSG_ANY;
band = 0;
}