From 8a6537431b9150f98e0eb61110cfd5b805f314f8 Mon Sep 17 00:00:00 2001 From: levine Date: Mon, 17 Mar 1997 21:04:06 +0000 Subject: LM_ERROR instead of ACE_ERROR --- examples/Mem_Map/IO-tests/IO_Test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/Mem_Map') diff --git a/examples/Mem_Map/IO-tests/IO_Test.cpp b/examples/Mem_Map/IO-tests/IO_Test.cpp index ceef5e8e39d..734444947e5 100644 --- a/examples/Mem_Map/IO-tests/IO_Test.cpp +++ b/examples/Mem_Map/IO-tests/IO_Test.cpp @@ -134,7 +134,7 @@ Mmap1_Test::run_test (int iterations, FILE *input_fp, FILE *output_fp) void *src = 0; if (map_input (src) == -1) - ACE_ERROR_RETURN ((ACE_ERROR, "%s", this->name ()), -1); + ACE_ERROR_RETURN ((LM_ERROR, "%s", this->name ()), -1); else { this->tm_.start (); @@ -142,7 +142,7 @@ Mmap1_Test::run_test (int iterations, FILE *input_fp, FILE *output_fp) while (--iterations >= 0) { if (ACE_OS::write (fileno (output_fp), src, map_input.size ()) == -1) - ACE_ERROR_RETURN ((ACE_ERROR, "%s", this->name ()), -1); + ACE_ERROR_RETURN ((LM_ERROR, "%s", this->name ()), -1); ACE_OS::lseek (fileno (output_fp), 0, SEEK_SET); } @@ -150,7 +150,7 @@ Mmap1_Test::run_test (int iterations, FILE *input_fp, FILE *output_fp) } if (map_input.unmap () == -1) - ACE_ERROR_RETURN ((ACE_ERROR, "%s", this->name ()), -1); + ACE_ERROR_RETURN ((LM_ERROR, "%s", this->name ()), -1); else return 0; } -- cgit v1.2.1