diff options
author | Tim Prouty <tprouty@samba.org> | 2009-01-11 11:00:50 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-01-11 11:00:50 -0800 |
commit | cd5039b18843485074bb8e502434b518265d10e9 (patch) | |
tree | 71ac8059d38bf324db8e683897f37cf5c979f818 /lib | |
parent | de4812ea1c9ed9ca69f949411fbdb0c8a0e66eef (diff) | |
download | samba-cd5039b18843485074bb8e502434b518265d10e9.tar.gz samba-cd5039b18843485074bb8e502434b518265d10e9.tar.bz2 samba-cd5039b18843485074bb8e502434b518265d10e9.zip |
tevent: Fix build break
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tevent/tevent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c index fa8219e234..cf178028fd 100644 --- a/lib/tevent/tevent.c +++ b/lib/tevent/tevent.c @@ -157,7 +157,7 @@ int tevent_common_context_destructor(struct tevent_context *ev) te = ev->timer_events; while (te) { te->event_ctx = NULL; - DLIST_REMOVE(te->timer_events, te); + DLIST_REMOVE(ev->timer_events, te); te = ev->timer_events; } |