diff options
Diffstat (limited to 'ACE/protocols/examples/RMCast/Send_Msg/Receiver.cpp')
-rw-r--r-- | ACE/protocols/examples/RMCast/Send_Msg/Receiver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/protocols/examples/RMCast/Send_Msg/Receiver.cpp b/ACE/protocols/examples/RMCast/Send_Msg/Receiver.cpp index c6378948fc8..90330b61973 100644 --- a/ACE/protocols/examples/RMCast/Send_Msg/Receiver.cpp +++ b/ACE/protocols/examples/RMCast/Send_Msg/Receiver.cpp @@ -84,7 +84,7 @@ ACE_TMAIN (int argc, ACE_TCHAR* argv[]) continue; } - if (s != sizeof (msg)) + if (s != (ssize_t) sizeof (msg)) { ACE_ERROR ((LM_ERROR, "unexpected message size %d, expected %d\n", s, sizeof (msg))); |