From dee95717d729f136f8e6bb577927e2645bdf07dc Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 11 Sep 2007 09:10:45 +0000 Subject: cleaned up compiler warnings --- omfwd.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'omfwd.c') diff --git a/omfwd.c b/omfwd.c index 3bfd9cc7..b7a7b025 100644 --- a/omfwd.c +++ b/omfwd.c @@ -569,6 +569,11 @@ static rsRetVal doTryResume(instanceData *pData) iRet = RS_RET_SUSPENDED; } break; + case eDestFORW: + /* rgerhards, 2007-09-11: this can not happen, but I've included it to + * a) make the compiler happy, b) detect any logic errors */ + assert(0); + break; } return iRet; -- cgit