diff options
author | markm <markm@FreeBSD.org> | 2002-05-23 12:09:14 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-05-23 12:09:14 +0000 |
commit | 59fca5c21df184b57c56627a032ac10084ab939c (patch) | |
tree | fda8f80ac7f80e12e506b35d1c460796a8b2fb89 /sys | |
parent | 64477eb2ea400392901ee296fe0c4623812197b2 (diff) | |
download | FreeBSD-src-59fca5c21df184b57c56627a032ac10084ab939c.zip FreeBSD-src-59fca5c21df184b57c56627a032ac10084ab939c.tar.gz |
Whitespace only; fix indentation.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/eventhandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/eventhandler.h b/sys/sys/eventhandler.h index 9331080..1bffef4 100644 --- a/sys/sys/eventhandler.h +++ b/sys/sys/eventhandler.h @@ -88,10 +88,10 @@ do { \ _en = TAILQ_NEXT(_ep, ee_link); \ _t = (struct eventhandler_entry_ ## name *)_ep; \ _t->eh_func(_ep->ee_arg , ## args); \ - _ep = _en; \ + _ep = _en; \ + } \ + EHE_UNLOCK(_el); \ } \ - EHE_UNLOCK(_el); \ - } \ } while (0) #define EVENTHANDLER_FAST_REGISTER(name, func, arg, priority) \ |