Silence PVS-Studio warning (V595). It can never be NULL here.

This commit is contained in:
jkim 2016-02-23 23:57:24 +00:00
parent 8a44a735c3
commit b36627870b

View File

@ -166,7 +166,7 @@ clkintr(void *arg)
mtx_unlock_spin(&clock_lock);
}
if (sc && sc->et.et_active && sc->mode != MODE_STOP)
if (sc->et.et_active && sc->mode != MODE_STOP)
sc->et.et_event_cb(&sc->et, sc->et.et_arg);
#ifdef DEV_MCA