summaryrefslogtreecommitdiff
path: root/tests/SPIPE_Test.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-16 22:31:22 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-16 22:31:22 +0000
commitbe1bfc72ae85f04171c3d59747e0a178baef80c0 (patch)
tree354ca37e081bcdc2d4b3ed615c826583de785d1b /tests/SPIPE_Test.cpp
parent4440166ea0cdd6a8714fddac1abf0f3d11e4dfc7 (diff)
downloadATCD-be1bfc72ae85f04171c3d59747e0a178baef80c0.tar.gz
*** empty log message ***
Diffstat (limited to 'tests/SPIPE_Test.cpp')
-rw-r--r--tests/SPIPE_Test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/SPIPE_Test.cpp b/tests/SPIPE_Test.cpp
index cb4bbea0896..c06dded2721 100644
--- a/tests/SPIPE_Test.cpp
+++ b/tests/SPIPE_Test.cpp
@@ -74,7 +74,6 @@ server (void *)
ACE_SPIPE_Acceptor acceptor;
ACE_SPIPE_Stream new_stream;
char buf[BUFSIZ];
- int n;
char t = 'a';
const char *rendezvous = PIPE_NAME;
@@ -92,7 +91,7 @@ server (void *)
ACE_DEBUG ((LM_DEBUG, "Accepted connection\n"));
- while ((n = new_stream.recv (buf, 1)) > 0)
+ while (new_stream.recv (buf, 1) > 0)
{
ACE_ASSERT (t == buf[0]);
t++;