From 65758da5c4eaf881e7b42799a352316f23af2eb6 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 12 Oct 2000 18:36:35 +0000 Subject: [PATCH] fixed sun pro warning --- src/ca/udpiiu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/udpiiu.cpp b/src/ca/udpiiu.cpp index 0edbdf17c..d9c312d4b 100644 --- a/src/ca/udpiiu.cpp +++ b/src/ca/udpiiu.cpp @@ -454,7 +454,7 @@ void udpiiu::shutdown () if ( status < 0 ) { // this knocks the UDP input thread out of recv () // on all os except linux - int status = socket_close ( this->sock ); + status = socket_close ( this->sock ); if ( status ) { errlogPrintf ("CAC UDP socket close error was %s\n", SOCKERRSTR ( SOCKERRNO ) ); @@ -480,7 +480,7 @@ void udpiiu::shutdown () if ( status < 0 ) { // this knocks the UDP input thread out of recv () // on all os except linux - int status = socket_close ( this->sock ); + status = socket_close ( this->sock ); if ( status ) { errlogPrintf ("CAC UDP socket close error was %s\n", SOCKERRSTR ( SOCKERRNO ) );