diff options
Diffstat (limited to 'runtime/netstrm.c')
-rw-r--r-- | runtime/netstrm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/netstrm.c b/runtime/netstrm.c index a6f840a5..58f38280 100644 --- a/runtime/netstrm.c +++ b/runtime/netstrm.c @@ -250,11 +250,11 @@ EnableKeepAlive(netstrm_t *pThis) /* check connection - slim wrapper for NSD driver function */ -static void +static rsRetVal CheckConnection(netstrm_t *pThis) { ISOBJ_TYPE_assert(pThis, netstrm); - pThis->Drvr.CheckConnection(pThis->pDrvrData); + return pThis->Drvr.CheckConnection(pThis->pDrvrData); } |