don't assert when unexpected event arrives; just log and drop

This commit is contained in:
ehouse 2005-09-04 20:43:23 +00:00
parent aa1323a5a3
commit 6995d37ead

View file

@ -129,10 +129,9 @@ getFromTable( XW_RELAY_STATE curState, XW_RELAY_EVENT curEvent,
++stp;
}
logf( "unable to find transition from %s on event %s",
logf( "==> ERROR :: unable to find transition from %s on event %s",
stateString(curState), eventString(curEvent) );
assert(0);
return 0;
} /* getFromTable */