From dc52b123feff7a8f35dd591639ab5d4dd7e53527 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 20 Sep 2012 15:13:14 +0200 Subject: Simplify --- runtime/netstrm.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/runtime/netstrm.c b/runtime/netstrm.c index 841a069c..58f38280 100644 --- a/runtime/netstrm.c +++ b/runtime/netstrm.c @@ -253,11 +253,8 @@ EnableKeepAlive(netstrm_t *pThis) static rsRetVal CheckConnection(netstrm_t *pThis) { - DEFiRet; ISOBJ_TYPE_assert(pThis, netstrm); - CHKiRet(pThis->Drvr.CheckConnection(pThis->pDrvrData)); -finalize_it: - RETiRet; + return pThis->Drvr.CheckConnection(pThis->pDrvrData); } -- cgit v1.2.3