summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Elliott <elliottc@objectcomputing.com>2022-12-14 08:08:25 -0600
committerChad Elliott <elliottc@objectcomputing.com>2022-12-14 08:08:25 -0600
commit82e34020efffaadf8c1d0efc3a3ea1d7bc78cf24 (patch)
tree27ed84a8945389a8774e36b61f731a7cd5ec10ae
parent5e0418d120dbff81325bd20bb575c09e550023a5 (diff)
downloadATCD-82e34020efffaadf8c1d0efc3a3ea1d7bc78cf24.tar.gz
Removed calls to ferror() as their return values were no longer used.
-rw-r--r--TAO/tao/Storable_FlatFileStream.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/TAO/tao/Storable_FlatFileStream.cpp b/TAO/tao/Storable_FlatFileStream.cpp
index a95c5063fc0..d9f688175f3 100644
--- a/TAO/tao/Storable_FlatFileStream.cpp
+++ b/TAO/tao/Storable_FlatFileStream.cpp
@@ -94,7 +94,6 @@ namespace
{
if (ACE_OS::fwrite(buffer, 1, n_read, f2) != n_read)
{
- ferror (f2);
if (TAO_debug_level > 0)
{
TAOLIB_ERROR ((LM_ERROR,
@@ -109,7 +108,6 @@ namespace
errno = 0;
if (!feof (f1))
{
- ferror (f1);
if (TAO_debug_level > 0)
{
TAOLIB_ERROR ((LM_ERROR,