diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2009-01-05 14:02:30 +0100 |
|---|---|---|
| committer | Jelmer Vernooij <jelmer@samba.org> | 2009-01-05 14:02:30 +0100 |
| commit | de7dc2cec059305d28cc75a5347bfd88f3cb5c95 (patch) | |
| tree | a286f235cbbbbaff06f83a32e55b0199da6dd8e4 /lib | |
| parent | ca05542d3defe76c3bce48eaff1fc749821a976c (diff) | |
| parent | 21b7b000fb53ac3025d0038cc551a47f9d4a743b (diff) | |
| download | samba-de7dc2cec059305d28cc75a5347bfd88f3cb5c95.tar.gz samba-de7dc2cec059305d28cc75a5347bfd88f3cb5c95.tar.xz samba-de7dc2cec059305d28cc75a5347bfd88f3cb5c95.zip | |
Merge branch 'master' of ssh://git.samba.org/data/git/samba
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/tevent/tevent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tevent/tevent.h b/lib/tevent/tevent.h index b57d96f5fb..98d31aa7c4 100644 --- a/lib/tevent/tevent.h +++ b/lib/tevent/tevent.h @@ -82,7 +82,7 @@ struct tevent_timer *_tevent_add_timer(struct tevent_context *ev, const char *location); #define tevent_add_timer(ev, mem_ctx, next_event, handler, private_data) \ _tevent_add_timer(ev, mem_ctx, next_event, handler, private_data, \ - #handler, __location__); + #handler, __location__) struct tevent_signal *_tevent_add_signal(struct tevent_context *ev, TALLOC_CTX *mem_ctx, @@ -106,7 +106,7 @@ struct tevent_aio *_tevent_add_aio(struct tevent_context *ev, const char *location); #define tevent_add_aio(ev, mem_ctx, iocb, handler, private_data) \ _tevent_add_aio(ev, mem_ctx, iocb, handler, private_data, \ - #handler, __location__); + #handler, __location__) int tevent_loop_once(struct tevent_context *ev); int tevent_loop_wait(struct tevent_context *ev); |
